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

Support new AWS Europe (Zurich) Region eu-central-2 #27814

Merged
merged 6 commits into from
Nov 15, 2022
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
3 changes: 3 additions & 0 deletions .changelog/27812.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
provider: Support `eu-central-2` as a valid AWS Region
```
15 changes: 15 additions & 0 deletions .changelog/27814.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-central-2` AWS Region
```

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

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

```release-note:enhancement
data-source/aws_s3_bucket: Add hosted zone ID for `eu-central-2` AWS Region
```
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ var ServiceAccountPerRegionMap = map[string]string{
endpoints.CnNorth1RegionID: "193415116832",
endpoints.CnNorthwest1RegionID: "681348832753",
endpoints.EuCentral1RegionID: "035351147821",
endpoints.EuCentral2RegionID: "453052556044",
endpoints.EuNorth1RegionID: "829690693026",
endpoints.EuSouth1RegionID: "669305197877",
endpoints.EuWest1RegionID: "859597730677",
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 @@ -25,6 +25,7 @@ var HostedZoneIdPerRegionMap = map[string]string{
endpoints.CnNorth1RegionID: "Z1GDH35T77C1KE",
endpoints.CnNorthwest1RegionID: "ZM7IZAIOVVDZF",
endpoints.EuCentral1RegionID: "Z215JYRZR1TBD5",
endpoints.EuCentral2RegionID: "Z06391101F2ZOEP8P5EB3",
endpoints.EuNorth1RegionID: "Z23TAZ6LKFMNIO",
endpoints.EuSouth1RegionID: "Z3ULH7SSC9OV64",
endpoints.EuWest1RegionID: "Z32O12XQLNTSW2",
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 @@ -27,6 +27,7 @@ var HostedZoneIdPerRegionALBMap = map[string]string{
endpoints.CnNorth1RegionID: "Z1GDH35T77C1KE",
endpoints.CnNorthwest1RegionID: "ZM7IZAIOVVDZF",
endpoints.EuCentral1RegionID: "Z215JYRZR1TBD5",
endpoints.EuCentral2RegionID: "Z06391101F2ZOEP8P5EB3",
endpoints.EuNorth1RegionID: "Z23TAZ6LKFMNIO",
endpoints.EuSouth1RegionID: "Z3ULH7SSC9OV64",
endpoints.EuWest1RegionID: "Z32O12XQLNTSW2",
Expand Down Expand Up @@ -59,6 +60,7 @@ var HostedZoneIdPerRegionNLBMap = map[string]string{
endpoints.CnNorth1RegionID: "Z3QFB96KMJ7ED6",
endpoints.CnNorthwest1RegionID: "ZQEIKTCZ8352D",
endpoints.EuCentral1RegionID: "Z3F0SRJ5LGBH90",
endpoints.EuCentral2RegionID: "Z02239872DOALSIDCX66S",
endpoints.EuNorth1RegionID: "Z1UDT6IFJ4EJM",
endpoints.EuSouth1RegionID: "Z23146JA1KNAFP",
endpoints.EuWest1RegionID: "Z2IFOLAFXWLO4F",
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 @@ -20,6 +20,7 @@ var hostedZoneIDsMap = map[string]string{
endpoints.CaCentral1RegionID: "Z1QDHH18159H29",
endpoints.CnNorthwest1RegionID: "Z282HJ1KT0DH03",
endpoints.EuCentral1RegionID: "Z21DNDUVLTQW6Q",
endpoints.EuCentral2RegionID: "Z030506016YDQGETNASS",
endpoints.EuNorth1RegionID: "Z3BAZG2TWCNX0D",
endpoints.EuSouth1RegionID: "Z30OZKI7KPW7MI",
endpoints.EuWest1RegionID: "Z1BKCTXD74EZPE",
Expand Down