From dba6e9de65c0c45cfc337db678b581a80d4a2a58 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:08:17 -0400 Subject: [PATCH 1/7] Add 'names.APSoutheast5RegionID'. --- names/names.go | 1 + 1 file changed, 1 insertion(+) diff --git a/names/names.go b/names/names.go index 47908c3ccb1..f76345d32d6 100644 --- a/names/names.go +++ b/names/names.go @@ -168,6 +168,7 @@ const ( APSoutheast2RegionID = "ap-southeast-2" // Asia Pacific (Sydney). APSoutheast3RegionID = "ap-southeast-3" // Asia Pacific (Jakarta). APSoutheast4RegionID = "ap-southeast-4" // Asia Pacific (Melbourne). + APSoutheast5RegionID = "ap-southeast-5" // Asia Pacific (Malaysia). CACentral1RegionID = "ca-central-1" // Canada (Central). CAWest1RegionID = "ca-west-1" // Canada West (Calgary). EUCentral1RegionID = "eu-central-1" // Europe (Frankfurt). From a02abb8cceb825dff39aa5695ead32e1a31affc7 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:14:25 -0400 Subject: [PATCH 2/7] r/aws_s3_bucket: Add support for ap-southeast-5 AWS Region. --- internal/service/s3/hosted_zones.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/service/s3/hosted_zones.go b/internal/service/s3/hosted_zones.go index c6bb91fe7ab..ccb039f2d35 100644 --- a/internal/service/s3/hosted_zones.go +++ b/internal/service/s3/hosted_zones.go @@ -22,6 +22,7 @@ var hostedZoneIDsMap = map[string]string{ names.APSoutheast2RegionID: "Z1WCIGYICN2BYD", names.APSoutheast3RegionID: "Z01846753K324LI26A3VV", names.APSoutheast4RegionID: "Z0312387243XT5FE14WFO", + names.APSoutheast5RegionID: "Z08660063OXLMA7F1FJHU", names.CACentral1RegionID: "Z1QDHH18159H29", names.CAWest1RegionID: "Z03565811Z33SLEZTHOUL", names.CNNorth1RegionID: "Z5CN8UMXT92WN", From e47935d04b4b59badea2395a3db72eb0a20115b8 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:16:01 -0400 Subject: [PATCH 3/7] d/aws_lb_hosted_zone_id: Add support for ap-southeast-5 AWS Region. --- internal/service/elbv2/hosted_zone_id_data_source.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/service/elbv2/hosted_zone_id_data_source.go b/internal/service/elbv2/hosted_zone_id_data_source.go index a4d666f13f9..96b375db7d3 100644 --- a/internal/service/elbv2/hosted_zone_id_data_source.go +++ b/internal/service/elbv2/hosted_zone_id_data_source.go @@ -30,6 +30,7 @@ var hostedZoneIDPerRegionALBMap = map[string]string{ names.APSoutheast2RegionID: "Z1GM3OXH4ZPM65", names.APSoutheast3RegionID: "Z08888821HLRG5A9ZRTER", names.APSoutheast4RegionID: "Z09517862IB2WZLPXG76F", + names.APSoutheast5RegionID: "Z06010284QMVVW7WO5J", names.CACentral1RegionID: "ZQSVJUPU6J1EY", names.CAWest1RegionID: "Z06473681N0SF6OS049SD", names.CNNorth1RegionID: "Z1GDH35T77C1KE", @@ -67,6 +68,7 @@ var hostedZoneIDPerRegionNLBMap = map[string]string{ names.APSoutheast2RegionID: "ZCT6FZBF4DROD", names.APSoutheast3RegionID: "Z01971771FYVNCOVWJU1G", names.APSoutheast4RegionID: "Z01156963G8MIIL7X90IV", + names.APSoutheast5RegionID: "Z026317210H9ACVTRO6FB", names.CACentral1RegionID: "Z2EPGBW3API2WT", names.CAWest1RegionID: "Z02754302KBB00W2LKWZ9", names.CNNorth1RegionID: "Z3QFB96KMJ7ED6", From 3d17d8f8b181c490e83721271a744a8e9ef9c1ab Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:18:03 -0400 Subject: [PATCH 4/7] d/aws_elb_hosted_zone_id: Add support for ap-southeast-5 AWS Region. --- internal/service/elb/hosted_zone_id_data_source.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/service/elb/hosted_zone_id_data_source.go b/internal/service/elb/hosted_zone_id_data_source.go index f8ccc2e945e..18ddd43b57a 100644 --- a/internal/service/elb/hosted_zone_id_data_source.go +++ b/internal/service/elb/hosted_zone_id_data_source.go @@ -26,6 +26,7 @@ var hostedZoneIDPerRegionMap = map[string]string{ names.APSoutheast2RegionID: "Z1GM3OXH4ZPM65", names.APSoutheast3RegionID: "Z08888821HLRG5A9ZRTER", names.APSoutheast4RegionID: "Z09517862IB2WZLPXG76F", + names.APSoutheast5RegionID: "Z06010284QMVVW7WO5J", names.CACentral1RegionID: "ZQSVJUPU6J1EY", names.CAWest1RegionID: "Z06473681N0SF6OS049SD", names.CNNorth1RegionID: "Z1GDH35T77C1KE", From facb4abbdafa7cd81aae00e2a2f2b1af2885e6f3 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:19:37 -0400 Subject: [PATCH 5/7] Add CHANGELOG entry. --- .changelog/#####.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changelog/#####.txt diff --git a/.changelog/#####.txt b/.changelog/#####.txt new file mode 100644 index 00000000000..e0350080046 --- /dev/null +++ b/.changelog/#####.txt @@ -0,0 +1,11 @@ +```release-note:enhancement +data-source/aws_elb_hosted_zone_id: Add hosted zone ID for `ap-southeast-5` AWS Region +``` + +```release-note:enhancement +data-source/aws_lb_hosted_zone_id: Add hosted zone IDs for `ap-southeast-5` AWS Region +``` + +```release-note:enhancement +data-source/aws_s3_bucket: Add hosted zone ID for `ap-southeast-5` AWS Region +``` \ No newline at end of file From 6f6d78db664444a2e40f79f764d645e1976c1864 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:22:19 -0400 Subject: [PATCH 6/7] Correct CHANGELOG entry file name. --- .changelog/{#####.txt => 39052.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .changelog/{#####.txt => 39052.txt} (100%) diff --git a/.changelog/#####.txt b/.changelog/39052.txt similarity index 100% rename from .changelog/#####.txt rename to .changelog/39052.txt From 5499c6d109a0f014bde31be03af5ca957333d40a Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Tue, 27 Aug 2024 11:31:20 -0400 Subject: [PATCH 7/7] Add ap-southeast-5 to 'IsOptInRegion' and 'Regions'. --- names/names.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names/names.go b/names/names.go index f76345d32d6..42b7234b05e 100644 --- a/names/names.go +++ b/names/names.go @@ -219,6 +219,7 @@ var allRegionIDs = []string{ APSoutheast2RegionID, APSoutheast3RegionID, APSoutheast4RegionID, + APSoutheast5RegionID, CACentral1RegionID, CAWest1RegionID, EUCentral1RegionID, @@ -319,7 +320,7 @@ func IsOptInRegion(region string) bool { switch region { case AFSouth1RegionID, APEast1RegionID, APSouth2RegionID, - APSoutheast3RegionID, APSoutheast4RegionID, + APSoutheast3RegionID, APSoutheast4RegionID, APSoutheast5RegionID, CAWest1RegionID, EUCentral2RegionID, EUSouth1RegionID, EUSouth2RegionID,