parent
2ca4df03ae
commit
db8805dfa5
|
@ -433,13 +433,16 @@ func resourceAwsInstanceCreate(d *schema.ResourceData, meta interface{}) error {
|
||||||
bd := v.(map[string]interface{})
|
bd := v.(map[string]interface{})
|
||||||
ebs := &ec2.EBSBlockDevice{
|
ebs := &ec2.EBSBlockDevice{
|
||||||
DeleteOnTermination: aws.Boolean(bd["delete_on_termination"].(bool)),
|
DeleteOnTermination: aws.Boolean(bd["delete_on_termination"].(bool)),
|
||||||
Encrypted: aws.Boolean(bd["encrypted"].(bool)),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if v, ok := bd["snapshot_id"].(string); ok && v != "" {
|
if v, ok := bd["snapshot_id"].(string); ok && v != "" {
|
||||||
ebs.SnapshotID = aws.String(v)
|
ebs.SnapshotID = aws.String(v)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if v, ok := bd["encrypted"].(bool); ok && v {
|
||||||
|
ebs.Encrypted = aws.Boolean(v)
|
||||||
|
}
|
||||||
|
|
||||||
if v, ok := bd["volume_size"].(int); ok && v != 0 {
|
if v, ok := bd["volume_size"].(int); ok && v != 0 {
|
||||||
ebs.VolumeSize = aws.Long(int64(v))
|
ebs.VolumeSize = aws.Long(int64(v))
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,7 +95,7 @@ Each `ebs_block_device` supports the following:
|
||||||
on instance termination (Default: `true`).
|
on instance termination (Default: `true`).
|
||||||
* `encrypted` - (Optional) Enables [EBS
|
* `encrypted` - (Optional) Enables [EBS
|
||||||
encryption](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html)
|
encryption](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html)
|
||||||
on the volume (Default: `false`).
|
on the volume (Default: `false`). Cannot be used with `snapshot_id`.
|
||||||
|
|
||||||
Modifying any `ebs_block_device` currently requires resource replacement.
|
Modifying any `ebs_block_device` currently requires resource replacement.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue