2015-04-29 05:49:21 +02:00
|
|
|
---
|
|
|
|
layout: "aws"
|
|
|
|
page_title: "AWS: aws_ebs_volume"
|
|
|
|
sidebar_current: "docs-aws-resource-ebs-volume"
|
|
|
|
description: |-
|
2015-05-21 11:54:11 +02:00
|
|
|
Provides an elastic block storage resource.
|
2015-04-29 05:49:21 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# aws\_ebs\_volume
|
|
|
|
|
|
|
|
Manages a single EBS volume.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
resource "aws_ebs_volume" "example" {
|
|
|
|
availability_zone = "us-west-1a"
|
|
|
|
size = 40
|
2015-05-29 09:05:21 +02:00
|
|
|
tags {
|
|
|
|
Name = "HelloWorld"
|
|
|
|
}
|
2015-04-29 05:49:21 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 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.
|
2015-05-29 03:00:44 +02:00
|
|
|
* `snapshot_id` (Optional) A snapshot to base the EBS volume off of.
|
2015-04-29 05:49:21 +02:00
|
|
|
* `type` - (Optional) The type of EBS volume.
|
|
|
|
* `kms_key_id` - (Optional) The KMS key ID for the volume.
|
2015-05-29 09:05:21 +02:00
|
|
|
* `tags` - (Optional) A mapping of tags to assign to the resource.
|
2015-05-21 12:06:13 +02:00
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
|
|
|
* `id` - The volume ID (e.g. vol-59fcb34e).
|
|
|
|
|
|
|
|
|