Skip to content

Commit 68f1ff8

Browse files
authored
chore(region-info): register eu-south-2 (#24121)
This PR adds eu-south-2 to `region-info` `fact-tables`. Closes #23619 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 7948c0f commit 68f1ff8

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

packages/@aws-cdk/aws-iot-actions/test/kinesis-firehose/integ.firehose-put-record-action.js.snapshot/test-stack.template.json

+3
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,9 @@
278278
"eu-south-1": {
279279
"FirehoseCidrBlock": "15.161.135.128/27"
280280
},
281+
"eu-south-2": {
282+
"FirehoseCidrBlock": "18.100.71.96/27"
283+
},
281284
"eu-west-1": {
282285
"FirehoseCidrBlock": "52.19.239.192/27"
283286
},

packages/@aws-cdk/aws-kinesisfirehose-destinations/test/integ.s3-bucket.lit.js.snapshot/aws-cdk-firehose-delivery-stream-s3-all-properties.template.json

+3
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,9 @@
747747
"eu-south-1": {
748748
"FirehoseCidrBlock": "15.161.135.128/27"
749749
},
750+
"eu-south-2": {
751+
"FirehoseCidrBlock": "18.100.71.96/27"
752+
},
750753
"eu-west-1": {
751754
"FirehoseCidrBlock": "52.19.239.192/27"
752755
},

packages/@aws-cdk/aws-kinesisfirehose/test/integ.delivery-stream.js.snapshot/aws-cdk-firehose-delivery-stream.template.json

+3
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,9 @@
241241
"eu-south-1": {
242242
"FirehoseCidrBlock": "15.161.135.128/27"
243243
},
244+
"eu-south-2": {
245+
"FirehoseCidrBlock": "18.100.71.96/27"
246+
},
244247
"eu-west-1": {
245248
"FirehoseCidrBlock": "52.19.239.192/27"
246249
},

packages/@aws-cdk/aws-kinesisfirehose/test/integ.delivery-stream.source-stream.js.snapshot/aws-cdk-firehose-delivery-stream-source-stream.template.json

+3
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,9 @@
260260
"eu-south-1": {
261261
"FirehoseCidrBlock": "15.161.135.128/27"
262262
},
263+
"eu-south-2": {
264+
"FirehoseCidrBlock": "18.100.71.96/27"
265+
},
263266
"eu-west-1": {
264267
"FirehoseCidrBlock": "52.19.239.192/27"
265268
},

packages/@aws-cdk/region-info/build-tools/fact-tables.ts

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export const AWS_CDK_METADATA = new Set([
2424
'eu-west-3',
2525
'eu-north-1',
2626
'eu-south-1',
27+
// 'eu-south-2',
2728
'me-south-1',
2829
// 'me-central-1',
2930
'sa-east-1',
@@ -53,6 +54,7 @@ export const ROUTE_53_BUCKET_WEBSITE_ZONE_IDS: { [region: string]: string } = {
5354
'eu-central-2': 'Z030506016YDQGETNASS',
5455
'eu-north-1': 'Z3BAZG2TWCNX0D',
5556
'eu-south-1': 'Z3IXVV8C73GIO3',
57+
'eu-south-2': 'Z0081959F7139GRJC19J',
5658
'eu-west-1': 'Z1BKCTXD74EZPE',
5759
'eu-west-2': 'Z3GKZC51ZF0DB4',
5860
'eu-west-3': 'Z3R1K369G5AVDG',
@@ -496,6 +498,7 @@ export const FIREHOSE_CIDR_BLOCKS: { [region: string]: string } = {
496498
'eu-central-2': '16.62.183.32',
497499
'eu-north-1': '13.53.63.224',
498500
'eu-south-1': '15.161.135.128',
501+
'eu-south-2': '18.100.71.96',
499502
'eu-west-1': '52.19.239.192',
500503
'eu-west-2': '18.130.1.96',
501504
'eu-west-3': '35.180.1.96',

0 commit comments

Comments
 (0)