Merge pull request #438 from candrews/patch-2

Update CloudFormation to use the latest t3 and m5 instance types
This commit is contained in:
Mandie Smith 2019-09-19 23:53:55 -04:00 committed by GitHub
commit 57bf6e7911
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
"Parameters" : {
"InstanceTypeParameter" : {
"Type" : "String",
"Default" : "t2.large",
"AllowedValues" : ["t2.micro", "m1.small", "m1.large", "t2.large"],
"Default" : "t3.large",
"AllowedValues" : ["t2.micro", "t3.micro", "m1.small", "m5.small", "m1.large", "m5.large", "t2.large", "t3.large"],
"Description" : "Type of EC2 instance you want to run your master in."
},
"KeyNameParameter": {