Adds support for encrypted EBS volumes

This commit is contained in:
Greg Burek 2014-05-22 11:36:22 -07:00
parent f0c5442685
commit 3a45712780
3 changed files with 5 additions and 2 deletions

View File

@ -8,6 +8,7 @@ import (
type BlockDevice struct {
DeleteOnTermination bool `mapstructure:"delete_on_termination"`
DeviceName string `mapstructure:"device_name"`
Encrypted bool `mapstructure:"encrypted"`
IOPS int64 `mapstructure:"iops"`
NoDevice bool `mapstructure:"no_device"`
SnapshotId string `mapstructure:"snapshot_id"`
@ -34,6 +35,7 @@ func buildBlockDevices(b []BlockDevice) []ec2.BlockDeviceMapping {
DeleteOnTermination: blockDevice.DeleteOnTermination,
IOPS: blockDevice.IOPS,
NoDevice: blockDevice.NoDevice,
Encrypted: blockDevice.Encrypted,
})
}
return blockDevices

View File

@ -62,7 +62,8 @@ each category, the available configuration keys are alphabetized.
device mappings to the AMI. The block device mappings allow for keys:
"device\_name" (string), "virtual\_name" (string), "snapshot\_id" (string),
"volume\_type" (string), "volume\_size" (integer), "delete\_on\_termination"
(boolean), "no\_device" (boolean), and "iops" (integer).
(boolean), "encrypted" (boolean), "no\_device" (boolean), and "iops"
(integer).
* `ami_description` (string) - The description to set for the resulting
AMI(s). By default this description is empty.

View File

@ -84,7 +84,7 @@ each category, the available configuration keys are alphabetized.
device mappings to the AMI. The block device mappings allow for keys:
"device\_name" (string), "virtual\_name" (string), "snapshot\_id" (string),
"volume\_type" (string), "volume\_size" (integer), "delete\_on\_termination"
(boolean), "no\_device" (boolean), and "iops" (integer).
(boolean), "encrypted" (boolean), "no\_device" (boolean), and "iops" (integer).
See [amazon-ebs](/docs/builders/amazon-ebs.html) for an example template.
* `ami_description` (string) - The description to set for the resulting