Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DUPLO-15158: Enable me-central-1 region for Duplo Docker builds #39

Merged
merged 3 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2024-02-16

### Added
- Enabled support for the "me-central-1" AWS region in the Packer configuration, allowing the creation of AMIs in the Middle East (Bahrain) region.
Comment on lines +1 to +4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CHANGELOG.md update


## 2024-02-07

### Added
Expand Down
3 changes: 2 additions & 1 deletion packer/aws.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ locals {
"sa-east-1",
"ca-central-1",
"ap-southeast-1",
"ap-southeast-2"
"ap-southeast-2",
"me-central-1"
]
}

Expand Down
1 change: 1 addition & 0 deletions packer/gen-native-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ $nicename images:"
s/us-gov-east-1/UsGovEast1/g
s/ap-southeast-1/Singapore/g
s/ap-southeast-2/Sydney/g
s/me-central-1/UAE/g
')"

case "$name" in
Expand Down
Loading