Skip to content

Commit effcc3d

Browse files
committed
Add support for new regions
Add support for eu-west-2, us-east-2, and ca-central-1 regions. Signed-off-by: Brian Barrett <[email protected]>
1 parent e63bf83 commit effcc3d

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

cloudformation/cfncluster.cfn.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1983,9 +1983,15 @@
19831983
"eu-west-1" : {
19841984
"arn" : "aws"
19851985
},
1986+
"eu-west-2" : {
1987+
"arn" : "aws"
1988+
},
19861989
"us-east-1" : {
19871990
"arn" : "aws"
19881991
},
1992+
"us-east-2" : {
1993+
"arn" : "aws"
1994+
},
19891995
"ap-northeast-1" : {
19901996
"arn" : "aws"
19911997
},
@@ -2015,6 +2021,9 @@
20152021
},
20162022
"ap-south-1" : {
20172023
"arn" : "aws"
2024+
},
2025+
"ca-central-1" : {
2026+
"arn" : "aws"
20182027
}
20192028
}
20202029
},

cloudformation/cfncluster.cfn.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,8 +1288,12 @@ Mappings:
12881288
AWSRegion2Capabilites:
12891289
eu-west-1:
12901290
arn: aws
1291+
eu-west-2:
1292+
arn: aws
12911293
us-east-1:
12921294
arn: aws
1295+
us-east-2:
1296+
arn: aws
12931297
ap-northeast-1:
12941298
arn: aws
12951299
us-west-2:
@@ -1310,6 +1314,8 @@ Mappings:
13101314
arn: aws
13111315
ap-south-1:
13121316
arn: aws
1317+
ca-central-1:
1318+
arn: aws
13131319
Resources:
13141320
SQS:
13151321
Type: AWS::SQS::Queue

0 commit comments

Comments
 (0)