mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Merge pull request #615 from Banno/fix-aws-instance-block-devices-index-range
fixing array length for aws instance volumes
This commit is contained in:
commit
a2c8859f04
@ -376,7 +376,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