Skip to content

Add ap-southeast-3 and me-central-1 regions #259

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

Merged
merged 1 commit into from
May 24, 2025
Merged
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
10 changes: 7 additions & 3 deletions utils/lambda-publish/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ publish-parallel:
# This command is designed for parallel execution of layer publishing.
# When we do `make publish -j7`, make will execute each command defined
# here in parallel.
parallel-publish: america-1 america-2 europe-1 europe-2 asia-1 asia-2 miscellaneous
parallel-publish: america-1 america-2 europe-1 europe-2 asia-1 asia-2 asia-southeast-1 miscellaneous

america-1:
REGION=us-east-1 ./publish.sh #US East (N. Virginia)
Expand All @@ -38,14 +38,18 @@ europe-2:
asia-1:
REGION=ap-east-1 ./publish.sh #Asia Pacific (Hong Kong)
REGION=ap-south-1 ./publish.sh #Asia Pacific (Mumbai)
REGION=ap-southeast-1 ./publish.sh #Asia Pacific (Singapore)

asia-2:
REGION=ap-northeast-1 ./publish.sh #Asia Pacific (Tokyo)
REGION=ap-northeast-3 ./publish.sh #Asia Pacific (Osaka)
REGION=ap-northeast-2 ./publish.sh #Asia Pacific (Seoul)

asia-southeast-1:
REGION=ap-southeast-1 ./publish.sh #Asia Pacific (Singapore)
REGION=ap-southeast-2 ./publish.sh #Asia Pacific (Sydney)
REGION=ap-southeast-3 ./publish.sh #Asia Pacific (Jakarta)

miscellaneous:
REGION=af-south-1 ./publish.sh #Africa (Cape Town)
REGION=me-south-1 ./publish.sh #Middle East (Bahrain)
REGION=ap-southeast-2 ./publish.sh #Asia Pacific (Sydney)
REGION=me-central-1 ./publish.sh #Middle East (UAE)
Loading