Skip to content

Commit 0901332

Browse files
committed
fix(contrib/ec2): restrict EBS type to standard or gp2
Provisioned iOPS require specifying more options, and accommodating that logic can be left to another PR.
1 parent 6aaa48f commit 0901332

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

contrib/ec2/deis.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
"Description" : "EC2 EBS VolumeType",
8383
"Type": "String",
8484
"Default": "gp2",
85-
"AllowedValues" : [ "gp2", "io1", "standard" ],
86-
"ConstraintDescription" : "must be either 'gp2' for SSD, 'io1' for guaranteed IOPs, or 'standard' for magnetic"
85+
"AllowedValues" : [ "gp2", "standard" ],
86+
"ConstraintDescription" : "must be either 'gp2' for SSD or 'standard' for magnetic (provisioned iOPS requires further manual changes)"
8787
},
8888
"AssociatePublicIP": {
8989
"Description": "Whether to associate a public IP address to the instances",

0 commit comments

Comments
 (0)