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

feat(region-info): add ap-northeast-3 region #13562

Closed
wants to merge 2 commits into from
Closed
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
52 changes: 39 additions & 13 deletions packages/@aws-cdk/region-info/build-tools/aws-entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,62 @@
* Not in the list ==> no built-in data for that region.
*/
export const AWS_REGIONS = [
'us-east-2',
'us-east-1',
'us-west-1',
'us-west-2',
'us-gov-east-1',
'us-gov-west-1',
'us-iso-east-1',
'us-isob-east-1',
/** Africa (Cape Town) */
'af-south-1',
/** Asia Pacific (Hong Kong) */
'ap-east-1',
'ap-south-1',
/** Asia Pacific (Tokyo) */
'ap-northeast-1',
/** Asia Pacific (Seoul) */
'ap-northeast-2',
/** Asia Pacific (Osaka) */
'ap-northeast-3',
/** Asia Pacific (Mumbai) */
'ap-south-1',
/** Asia Pacific (Singapore) */
'ap-southeast-1',
/** Asia Pacific (Sydney) */
'ap-southeast-2',
'ap-northeast-1',
/** Canada (Central) */
'ca-central-1',
/** China (Beijing) */
'cn-north-1',
/** China (Ningxia) */
'cn-northwest-1',
/** Europe (Frankfurt) */
'eu-central-1',
/** Europe (Stockholm) */
'eu-north-1',
/** Europe (Milan) */
'eu-south-1',
/** Europe (Ireland) */
'eu-west-1',
/** Europe (London) */
'eu-west-2',
/** Europe (Paris) */
'eu-west-3',
'eu-north-1',
'eu-south-1',
/** Middle East (Bahrain) */
'me-south-1',
/** South America (São Paulo) */
'sa-east-1',
/** US East (N. Virginia) */
'us-east-1',
/** US East (Ohio) */
'us-east-2',
/** AWS GovCloud (US-East) */
'us-gov-east-1',
/** AWS GovCloud (US-West) */
'us-gov-west-1',
'us-iso-east-1',
'us-isob-east-1',
/** US West (N. California) */
'us-west-1',
/** US West (Oregon) */
'us-west-2',
].sort();

/**
* Possibly non-exaustive list of all service names, used to locate service principals.
* Possibly non-exhaustive list of all service names, used to locate service principals.
*
* Not in the list ==> default service principal mappings.
*/
Expand Down
1 change: 1 addition & 0 deletions packages/@aws-cdk/region-info/build-tools/fact-tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ export const DLC_REPOSITORY_ACCOUNTS: { [region: string]: string } = {
export const APPMESH_ECR_ACCOUNTS: { [region: string]: string } = {
'ap-northeast-1': '840364872350',
'ap-northeast-2': '840364872350',
'ap-northeast-3': '840364872350',
'ap-south-1': '840364872350',
'ap-southeast-1': '840364872350',
'ap-southeast-2': '840364872350',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,26 @@ Object {
},
"vpcEndPointServiceNamePrefix": "com.amazonaws.vpce",
},
"ap-northeast-3": Object {
"cdkMetadataResourceAvailable": false,
"domainSuffix": "amazonaws.com",
"partition": "aws",
"s3StaticWebsiteEndpoint": "s3-website.ap-northeast-3.amazonaws.com",
"servicePrincipals": Object {
"application-autoscaling": "application-autoscaling.amazonaws.com",
"autoscaling": "autoscaling.amazonaws.com",
"codedeploy": "codedeploy.ap-northeast-3.amazonaws.com",
"ec2": "ec2.amazonaws.com",
"events": "events.amazonaws.com",
"lambda": "lambda.amazonaws.com",
"logs": "logs.ap-northeast-3.amazonaws.com",
"s3": "s3.amazonaws.com",
"sns": "sns.amazonaws.com",
"sqs": "sqs.amazonaws.com",
"states": "states.ap-northeast-3.amazonaws.com",
},
"vpcEndPointServiceNamePrefix": "com.amazonaws.vpce",
},
"ap-south-1": Object {
"cdkMetadataResourceAvailable": true,
"domainSuffix": "amazonaws.com",
Expand Down