From 48a53446bf1acfcb30cdf0d58915a35658d9d20f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 6 Sep 2013 11:48:38 -0700 Subject: [PATCH] builder/amazon/common: don't need squash here --- builder/amazon/common/block_device.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/amazon/common/block_device.go b/builder/amazon/common/block_device.go index 995d8f6bf..08f07e269 100644 --- a/builder/amazon/common/block_device.go +++ b/builder/amazon/common/block_device.go @@ -17,8 +17,8 @@ type BlockDevice struct { } type BlockDevices struct { - AMIMappings []BlockDevice `mapstructure:"ami_block_device_mappings,squash"` - LaunchMappings []BlockDevice `mapstructure:"launch_block_device_mappings,squash"` + AMIMappings []BlockDevice `mapstructure:"ami_block_device_mappings"` + LaunchMappings []BlockDevice `mapstructure:"launch_block_device_mappings"` } func buildBlockDevices(b []BlockDevice) []ec2.BlockDeviceMapping {