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

New AWS Region: ap-southeast-4 #29271

Closed
wants to merge 7 commits into from
Closed
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
3 changes: 3 additions & 0 deletions .changelog/29271.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
provider: Support `ap-southeast-4` as a valid AWS Region
```
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ BUG FIXES:
* resource/aws_s3_bucket: Fix crash when `logging` is empty ([#29243](https://github.com/hashicorp/terraform-provider-aws/issues/29243))
* resource/aws_sns_topic: Fixes potential race condition when reading policy document. ([#29226](https://github.com/hashicorp/terraform-provider-aws/issues/29226))
* resource/aws_sns_topic_policy: Fixes potential race condition when reading policy document. ([#29226](https://github.com/hashicorp/terraform-provider-aws/issues/29226))
* provider: Support `ap-southeast-4` as a valid AWS Region ([#29231](https://github.com/hashicorp/terraform-provider-aws/issues/29231))

## 4.53.0 (February 3, 2023)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ var ServiceAccountPerRegionMap = map[string]string{
endpoints.ApSoutheast1RegionID: "903692715234",
endpoints.ApSoutheast2RegionID: "284668455005",
endpoints.ApSoutheast3RegionID: "069019280451",
endpoints.ApSoutheast4RegionID: "187074758985",
endpoints.CaCentral1RegionID: "819402241893",
endpoints.CnNorth1RegionID: "193415116832",
endpoints.CnNorthwest1RegionID: "681348832753",
Expand Down
1 change: 1 addition & 0 deletions internal/service/elb/hosted_zone_id_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var HostedZoneIdPerRegionMap = map[string]string{
endpoints.ApSoutheast1RegionID: "Z1LMS91P8CMLE5",
endpoints.ApSoutheast2RegionID: "Z1GM3OXH4ZPM65",
endpoints.ApSoutheast3RegionID: "Z08888821HLRG5A9ZRTER",
endpoints.ApSoutheast4RegionID: "Z09517862IB2WZLPXG76F",
endpoints.CaCentral1RegionID: "ZQSVJUPU6J1EY",
endpoints.CnNorth1RegionID: "Z1GDH35T77C1KE",
endpoints.CnNorthwest1RegionID: "ZM7IZAIOVVDZF",
Expand Down
1 change: 1 addition & 0 deletions internal/service/elbv2/hosted_zone_id_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ var HostedZoneIdPerRegionNLBMap = map[string]string{
endpoints.ApSoutheast1RegionID: "ZKVM4W9LS7TM",
endpoints.ApSoutheast2RegionID: "ZCT6FZBF4DROD",
endpoints.ApSoutheast3RegionID: "Z01971771FYVNCOVWJU1G",
endpoints.ApSoutheast4RegionID: "Z01156963G8MIIL7X90IV",
endpoints.CaCentral1RegionID: "Z2EPGBW3API2WT",
endpoints.CnNorth1RegionID: "Z3QFB96KMJ7ED6",
endpoints.CnNorthwest1RegionID: "ZQEIKTCZ8352D",
Expand Down