From 3c51c728f4136d65d0a82f87d5bcaef7088bc78e Mon Sep 17 00:00:00 2001 From: Jake Champlin Date: Fri, 10 Feb 2017 09:41:45 -0500 Subject: [PATCH] remove commented line --- builtin/providers/aws/resource_aws_ami.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_ami.go b/builtin/providers/aws/resource_aws_ami.go index 172d4bcbc2..2a5c2b3a40 100644 --- a/builtin/providers/aws/resource_aws_ami.go +++ b/builtin/providers/aws/resource_aws_ami.go @@ -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 {