mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 13:01:34 -04:00
1.0 KiB
1.0 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| aws | AWS: aws_ebs_volume | docs-aws-resource-ebs-volume | Provides an elastic block storage resource. |
aws_ebs_volume
Manages a single EBS volume.
Example Usage
resource "aws_ebs_volume" "example" {
availability_zone = "us-west-1a"
size = 40
tags {
Name = "HelloWorld"
}
}
Argument Reference
The following arguments are supported:
availability_zone- (Required) The AZ where the EBS volume will exist.encrypted- (Optional) If true, the disk will be encrypted.iops- (Optional) The amount of IOPS to provision for the disk.size- (Optional) The size of the drive in GB.snapshot_id(Optional) A snapshot to base the EBS volume off of.type- (Optional) The type of EBS volume.kms_key_id- (Optional) The KMS key ID for the volume.tags- (Optional) A mapping of tags to assign to the resource.
Attributes Reference
The following attributes are exported:
id- The volume ID (e.g. vol-59fcb34e).