remove commented line

This commit is contained in:
Jake Champlin 2017-02-10 09:41:45 -05:00
parent fcec0a9f3d
commit 3c51c728f4
No known key found for this signature in database
GPG Key ID: DC31F41958EF4AC2
1 changed files with 1 additions and 2 deletions

View File

@ -62,8 +62,7 @@ func resourceAwsAmiCreate(d *schema.ResourceData, meta interface{}) error {
DeviceName: aws.String(ebsBlockDev["device_name"].(string)),
Ebs: &ec2.EbsBlockDevice{
DeleteOnTermination: aws.Bool(ebsBlockDev["delete_on_termination"].(bool)),
// VolumeSize: aws.Int64(int64(ebsBlockDev["volume_size"].(int))),
VolumeType: aws.String(ebsBlockDev["volume_type"].(string)),
VolumeType: aws.String(ebsBlockDev["volume_type"].(string)),
},
}
if iops, ok := ebsBlockDev["iops"]; ok {