mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 14:44:11 -06:00
remove commented line
This commit is contained in:
parent
fcec0a9f3d
commit
3c51c728f4
@ -62,8 +62,7 @@ func resourceAwsAmiCreate(d *schema.ResourceData, meta interface{}) error {
|
|||||||
DeviceName: aws.String(ebsBlockDev["device_name"].(string)),
|
DeviceName: aws.String(ebsBlockDev["device_name"].(string)),
|
||||||
Ebs: &ec2.EbsBlockDevice{
|
Ebs: &ec2.EbsBlockDevice{
|
||||||
DeleteOnTermination: aws.Bool(ebsBlockDev["delete_on_termination"].(bool)),
|
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 {
|
if iops, ok := ebsBlockDev["iops"]; ok {
|
||||||
|
Loading…
Reference in New Issue
Block a user