Merge pull request #615 from Banno/fix-aws-instance-block-devices-index-range

fixing array length for aws instance volumes
pull/627/head
Armon Dadgar 12 years ago
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…
Cancel
Save