website: add ebs_volume

This commit is contained in:
Mitchell Hashimoto 2015-04-28 20:49:21 -07:00
parent a1c44c0fb4
commit 5d4c67c462
2 changed files with 116 additions and 80 deletions

View File

@ -0,0 +1,32 @@
---
layout: "aws"
page_title: "AWS: aws_ebs_volume"
sidebar_current: "docs-aws-resource-ebs-volume"
description: |-
Provides an Elastic IP resource.
---
# aws\_ebs\_volume
Manages a single EBS volume.
## Example Usage
```
resource "aws_ebs_volume" "example" {
availability_zone = "us-west-1a"
size = 40
}
```
## 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` (Optinal) 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.

View File

@ -33,6 +33,10 @@
<a href="/docs/providers/aws/r/db_parameter_group.html">aws_db_parameter_group</a>
</li>
<li<%= sidebar_current("docs-aws-resource-ebs-volume") %>>
<a href="/docs/providers/aws/r/ebs_volume.html">aws_ebs_volume</a>
</li>
<li<%= sidebar_current("docs-aws-resource-eip") %>>
<a href="/docs/providers/aws/r/eip.html">aws_eip</a>
</li>