Merge branch 'use-default-volumesize'

This commit is contained in:
Mark Peek 2015-10-18 13:04:41 -07:00
commit 6f5c64db41
1 changed files with 15 additions and 0 deletions

View File

@ -84,6 +84,21 @@ func TestBlockDevice(t *testing.T) {
},
},
},
{
Config: &BlockDevice{
DeviceName: "/dev/sdb",
VolumeType: "standard",
DeleteOnTermination: true,
},
Result: &ec2.BlockDeviceMapping{
DeviceName: aws.String("/dev/sdb"),
Ebs: &ec2.EbsBlockDevice{
VolumeType: aws.String("standard"),
DeleteOnTermination: aws.Bool(true),
},
},
},
{
Config: &BlockDevice{
DeviceName: "/dev/sdb",