Skip to content

Commit 0450926

Browse files
JayntiRajcornerwings
authored andcommitted
feat(region-info): added AppMesh ECR account for af-south-1 region (aws#12814)
AppMesh is launched in `af-south-1` region and has a separate account for storing Envoy images in ECR. Added the ECR account information. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 3fefdeb commit 0450926

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

.gitallowed

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ account: '772975370895'
2222
account: '856666278305'
2323
account: '840364872350'
2424
account: '422531588944'
25+
account: '924023996002'

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/appmesh.ts

+1
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ export class AppMeshExtension extends ServiceExtension {
165165

166166
'me-south-1': this.accountIdForRegion('me-south-1'),
167167
'ap-east-1': this.accountIdForRegion('ap-east-1'),
168+
'af-south-1': this.accountIdForRegion('af-south-1'),
168169
},
169170
});
170171

packages/@aws-cdk-containers/ecs-service-extensions/test/integ.all-service-addons.expected.json

+9
Original file line numberDiff line numberDiff line change
@@ -3354,6 +3354,9 @@
33543354
},
33553355
"ap-east-1": {
33563356
"ecrRepo": "856666278305"
3357+
},
3358+
"af-south-1": {
3359+
"ecrRepo": "924023996002"
33573360
}
33583361
},
33593362
"greetingenvoyimageaccountmapping": {
@@ -3413,6 +3416,9 @@
34133416
},
34143417
"ap-east-1": {
34153418
"ecrRepo": "856666278305"
3419+
},
3420+
"af-south-1": {
3421+
"ecrRepo": "924023996002"
34163422
}
34173423
},
34183424
"greeterenvoyimageaccountmapping": {
@@ -3472,6 +3478,9 @@
34723478
},
34733479
"ap-east-1": {
34743480
"ecrRepo": "856666278305"
3481+
},
3482+
"af-south-1": {
3483+
"ecrRepo": "924023996002"
34753484
}
34763485
}
34773486
},

packages/@aws-cdk-containers/ecs-service-extensions/test/integ.multiple-environments.expected.json

+6
Original file line numberDiff line numberDiff line change
@@ -2173,6 +2173,9 @@
21732173
},
21742174
"ap-east-1": {
21752175
"ecrRepo": "856666278305"
2176+
},
2177+
"af-south-1": {
2178+
"ecrRepo": "924023996002"
21762179
}
21772180
},
21782181
"namedevelopmentenvoyimageaccountmapping": {
@@ -2232,6 +2235,9 @@
22322235
},
22332236
"ap-east-1": {
22342237
"ecrRepo": "856666278305"
2238+
},
2239+
"af-south-1": {
2240+
"ecrRepo": "924023996002"
22352241
}
22362242
}
22372243
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,6 @@ export const APPMESH_ECR_ACCOUNTS: { [region: string]: string } = {
158158

159159
'me-south-1': '772975370895',
160160
'ap-east-1': '856666278305',
161+
'af-south-1': '924023996002',
161162

162163
};

0 commit comments

Comments
 (0)