Skip to content

Commit

Permalink
Merge pull request #27855 from hashicorp/f-eu-south-2
Browse files Browse the repository at this point in the history
Support new AWS Europe (Madrid) Region `eu-south-2`
  • Loading branch information
ewbankkit authored Nov 17, 2022
2 parents 00855bc + c1b8541 commit 199a987
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .changelog/27855.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
```release-note:enhancement
data-source/aws_cloudtrail_service_account: Add service account ID for `eu-south-2` AWS Region
```

```release-note:enhancement
data-source/aws_elb_hosted_zone_id: Add hosted zone ID for `eu-south-2` AWS Region
```

```release-note:enhancement
data-source/aws_lb_hosted_zone_id: Add hosted zone IDs for `eu-south-2` AWS Region
```

```release-note:enhancement
data-source/aws_s3_bucket: Add hosted zone ID for `eu-south-2` AWS Region
```
1 change: 1 addition & 0 deletions internal/service/cloudtrail/service_account_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ var ServiceAccountPerRegionMap = map[string]string{
endpoints.EuCentral2RegionID: "453052556044",
endpoints.EuNorth1RegionID: "829690693026",
endpoints.EuSouth1RegionID: "669305197877",
endpoints.EuSouth2RegionID: "757211635381",
endpoints.EuWest1RegionID: "859597730677",
endpoints.EuWest2RegionID: "282025262664",
endpoints.EuWest3RegionID: "262312530599",
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 @@ -28,6 +28,7 @@ var HostedZoneIdPerRegionMap = map[string]string{
endpoints.EuCentral2RegionID: "Z06391101F2ZOEP8P5EB3",
endpoints.EuNorth1RegionID: "Z23TAZ6LKFMNIO",
endpoints.EuSouth1RegionID: "Z3ULH7SSC9OV64",
endpoints.EuSouth2RegionID: "Z0956581394HF5D5LXGAP",
endpoints.EuWest1RegionID: "Z32O12XQLNTSW2",
endpoints.EuWest2RegionID: "ZHURV8PSTC4K8",
endpoints.EuWest3RegionID: "Z3Q77PNBQS71R4",
Expand Down
2 changes: 2 additions & 0 deletions internal/service/elbv2/hosted_zone_id_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ var HostedZoneIdPerRegionALBMap = map[string]string{
endpoints.EuCentral2RegionID: "Z06391101F2ZOEP8P5EB3",
endpoints.EuNorth1RegionID: "Z23TAZ6LKFMNIO",
endpoints.EuSouth1RegionID: "Z3ULH7SSC9OV64",
endpoints.EuSouth2RegionID: "Z0956581394HF5D5LXGAP",
endpoints.EuWest1RegionID: "Z32O12XQLNTSW2",
endpoints.EuWest2RegionID: "ZHURV8PSTC4K8",
endpoints.EuWest3RegionID: "Z3Q77PNBQS71R4",
Expand Down Expand Up @@ -63,6 +64,7 @@ var HostedZoneIdPerRegionNLBMap = map[string]string{
endpoints.EuCentral2RegionID: "Z02239872DOALSIDCX66S",
endpoints.EuNorth1RegionID: "Z1UDT6IFJ4EJM",
endpoints.EuSouth1RegionID: "Z23146JA1KNAFP",
endpoints.EuSouth2RegionID: "Z1011216NVTVYADP1SSV",
endpoints.EuWest1RegionID: "Z2IFOLAFXWLO4F",
endpoints.EuWest2RegionID: "ZD4D7Y8KGAS4G",
endpoints.EuWest3RegionID: "Z1CMS0P5QUZ6D5",
Expand Down
1 change: 1 addition & 0 deletions internal/service/s3/hosted_zones.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var hostedZoneIDsMap = map[string]string{
endpoints.EuCentral2RegionID: "Z030506016YDQGETNASS",
endpoints.EuNorth1RegionID: "Z3BAZG2TWCNX0D",
endpoints.EuSouth1RegionID: "Z30OZKI7KPW7MI",
endpoints.EuSouth2RegionID: "Z0081959F7139GRJC19J",
endpoints.EuWest1RegionID: "Z1BKCTXD74EZPE",
endpoints.EuWest2RegionID: "Z3GKZC51ZF0DB4",
endpoints.EuWest3RegionID: "Z3R1K369G5AVDG",
Expand Down

0 comments on commit 199a987

Please sign in to comment.