func resourceInstanceBlockDeviceV2(d *schema.ResourceData, bd map[string]interface{}) []bootfromvolume.BlockDevice { sourceType := bootfromvolume.SourceType(bd["source_type"].(string)) bfvOpts := []bootfromvolume.BlockDevice{ bootfromvolume.BlockDevice{ UUID: bd["uuid"].(string), SourceType: sourceType, VolumeSize: bd["volume_size"].(int), DestinationType: bd["destination_type"].(string), BootIndex: bd["boot_index"].(int), }, } return bfvOpts }
func resourceInstanceBlockDevicesV2(d *schema.ResourceData, bds []interface{}) []bootfromvolume.BlockDevice { blockDeviceOpts := make([]bootfromvolume.BlockDevice, len(bds)) for i, bd := range bds { bdM := bd.(map[string]interface{}) sourceType := bootfromvolume.SourceType(bdM["source_type"].(string)) blockDeviceOpts[i] = bootfromvolume.BlockDevice{ UUID: bdM["uuid"].(string), SourceType: sourceType, VolumeSize: bdM["volume_size"].(int), DestinationType: bdM["destination_type"].(string), BootIndex: bdM["boot_index"].(int), DeleteOnTermination: bdM["delete_on_termination"].(bool), GuestFormat: bdM["guest_format"].(string), } } log.Printf("[DEBUG] Block Device Options: %+v", blockDeviceOpts) return blockDeviceOpts }