Skip to content

Commit

Permalink
Merge pull request #62 from moj-analytical-services/feature/add-bedro…
Browse files Browse the repository at this point in the history
…ck-london

🏴󠁧󠁢󠁥󠁮󠁧󠁿 Adding London region to Bedrock
  • Loading branch information
julialawrence authored Jun 17, 2024
2 parents f70fcbb + 8d5b839 commit d4a3684
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## v4.7.0

- Add London region for Amazon Bedrock

## v4.6.0

- Add Amazon Bedrock permissions
Expand Down
3 changes: 2 additions & 1 deletion examples/iam_policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@
"StringEquals": {
"aws:RequestedRegion": [
"eu-central-1",
"eu-west-3"
"eu-west-3",
"eu-west-2"
]
}
}
Expand Down
3 changes: 2 additions & 1 deletion iam_builder/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@
"StringEquals": {
"aws:RequestedRegion": [
"eu-central-1",
"eu-west-3"
"eu-west-3",
"eu-west-2"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iam_builder"
version = "4.6.0"
version = "4.7.0"
description = "A lil python package to generate iam policies"
authors = ["Karik Isichei <[email protected]>"]
license = "MIT"
Expand Down
3 changes: 2 additions & 1 deletion tests/expected_policy/all_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@
"StringEquals": {
"aws:RequestedRegion": [
"eu-central-1",
"eu-west-3"
"eu-west-3",
"eu-west-2"
]
}
}
Expand Down

0 comments on commit d4a3684

Please sign in to comment.