Merge pull request #8582 from hashicorp/fix-aws-alb-docs

docs/aws: `aws_alb` name parameter is now documented as a Required field
This commit is contained in:
Paul Stack 2016-08-31 20:17:59 +01:00 committed by GitHub
commit 5de8137eb3
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ resource "aws_alb" "test" {
The following arguments are supported:
* `name` - (Optional) The name of the ALB. By default generated by Terraform.
* `name` - (Required) The name of the ALB. This name must be unique within your AWS account, can have a maximum of
32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen.
* `internal` - (Optional) If true, the ALB will be internal.
* `security_groups` - (Optional) A list of security group IDs to assign to the ELB.
* `access_logs` - (Optional) An Access Logs block. Access Logs documented below.