Difference between revisions of "Terraform resource: ebs block device argument"
Jump to navigation
Jump to search
m (Welcome moved page Ebs block device to Ebs block device argument) |
|||
Line 7: | Line 7: | ||
ebs_block_device { | ebs_block_device { | ||
[[device_name]] = "[[/dev/sdf]]" | [[device_name]] = "[[/dev/sdf]]" | ||
− | volume_size = 50 | + | [[volume_size]] = 50 |
[[volume_type]] = "[[gp3]]" | [[volume_type]] = "[[gp3]]" | ||
− | delete_on_termination = false | + | [[delete_on_termination]] = false |
} | } | ||
Revision as of 09:57, 21 November 2023
ebs_block_device
argument in aws_instance resource https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#ebs-ephemeral-and-root-block-devicesebs_block_device
input in ec2-instance module
Example
ebs_block_device { device_name = "/dev/sdf" volume_size = 50 volume_type = "gp3" delete_on_termination = false }
volume_type will be updated in-place encrypted
Related
- Terraform resource: aws_volume_attachment
- Terraform apply: ec2 instance example (aws instance)
- Terraform resource: aws_ebs_volume
root_block_device
See also
Advertising: