Skip to content

Commit

Permalink
Lower default instance size
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwcole committed Mar 28, 2021
1 parent 955c25f commit a731df9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions templates/ebs_instance_with_data_volume.json.erb
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
},
"InstanceType": {
"Type": "String",
"Default": "c5.large",
"Default": "t3.medium",
"AllowedValues": [
"t1.micro", "t2.micro", "t2.small", "t2.medium",
"t1.micro", "t2.micro", "t2.small", "t2.medium", "t3.medium",
"m1.small", "m1.medium", "m1.large", "m1.xlarge",
"m2.xlarge", "m2.2xlarge", "m2.4xlarge",
"m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge",
Expand Down Expand Up @@ -171,6 +171,9 @@
"t2.small": {
"Arch": "HVM64"
},
"t3.medium": {
"Arch": "HVM64"
},
"c5.large": {
"Arch": "HVM64"
}
Expand Down

0 comments on commit a731df9

Please sign in to comment.