Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
feat(contrib/ec2): add m3 instances to template
Browse files Browse the repository at this point in the history
The current generation of EC2 instances (M3) is faster and cheaper
than the old M1 instances. It's a more reasonable default to use
m3.medium as the default instance size.

fixes #689
  • Loading branch information
Matthew Fisher committed Apr 17, 2014
1 parent a1ce3cd commit 29f503a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/ec2/deis.template
Expand Up @@ -33,8 +33,8 @@
"InstanceType" : {
"Description" : "EC2 instance type (m1.small, etc).",
"Type" : "String",
"Default" : "t1.micro",
"AllowedValues" : [ "t1.micro","m1.small","m1.medium","m1.large","m1.xlarge", "m3.xlarge", "m3.2xlarge", "m2.xlarge","m2.2xlarge","m2.4xlarge","c1.medium","c1.xlarge","cc1.4xlarge","cc2.8xlarge","cg1.4xlarge", "hi1.4xlarge", "hs1.8xlarge"],
"Default" : "m3.medium",
"AllowedValues" : [ "t1.micro","m1.small","m1.medium","m1.large","m1.xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m2.xlarge","m2.2xlarge","m2.4xlarge","c1.medium","c1.xlarge","cc1.4xlarge","cc2.8xlarge","cg1.4xlarge", "hi1.4xlarge", "hs1.8xlarge"],
"ConstraintDescription" : "must be a valid EC2 instance type."
},
"ClusterSize": {
Expand Down

0 comments on commit 29f503a

Please sign in to comment.