mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 12:20:28 -06:00
fixing array length for aws instance volumes
This commit is contained in:
parent
a5d444b8e3
commit
f3ff4bece8
@ -368,7 +368,7 @@ func resourceAwsInstanceRead(d *schema.ResourceData, meta interface{}) error {
|
||||
return err
|
||||
}
|
||||
|
||||
bds := make([]map[string]interface{}, len(instance.BlockDevices))
|
||||
bds := make([]map[string]interface{}, len(volResp.Volumes))
|
||||
for i, vol := range volResp.Volumes {
|
||||
bds[i] = make(map[string]interface{})
|
||||
bds[i]["device_name"] = bdByVolID[vol.VolumeId].DeviceName
|
||||
|
Loading…
Reference in New Issue
Block a user