Skip to content

Commit 0976369

Browse files
author
Gabriel Monroy
committed
Merge pull request #895 from deis/fix-ec2-space
fix(ec2): add explicit 100GB root volume
2 parents c205210 + ff24d62 commit 0976369

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

contrib/ec2/deis.template

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,13 @@
159159
"InstanceType": {"Ref": "InstanceType"},
160160
"KeyName": {"Ref": "KeyPair"},
161161
"SecurityGroups": [{"Ref": "CoreOSSecurityGroup"}, {"Ref": "DeisSecurityGroup"}],
162-
"UserData" : { "Fn::Base64": { "Fn::Join": [ "", [ ] ] }
163-
}
162+
"UserData" : { "Fn::Base64": { "Fn::Join": [ "", [ ] ] } },
163+
"BlockDeviceMappings" : [
164+
{
165+
"DeviceName" : "/dev/sda",
166+
"Ebs" : { "VolumeSize" : "100" }
167+
}
168+
]
164169
}
165170
}
166171
}

0 commit comments

Comments
 (0)