Merge pull request #2092 from TimeIncOSS/r53-alias-docs-fix

Fix docs for aws_route53_record params
This commit is contained in:
Chris Bednarski 2015-05-26 20:32:27 -07:00
commit 2e05515429
1 changed files with 4 additions and 3 deletions

View File

@ -89,12 +89,13 @@ The following arguments are supported:
* `zone_id` - (Required) The ID of the hosted zone to contain this record.
* `name` - (Required) The name of the record.
* `type` - (Required) The record type.
* `ttl` - (Required) The TTL of the record.
* `records` - (Required) A string list of records.
* `ttl` - (Required for non-alias records) The TTL of the record.
* `records` - (Required for non-alias records) A string list of records.
* `weight` - (Optional) The weight of weighted record (0-255).
* `set_identifier` - (Optional) Unique identifier to differentiate weighted
record from one another. Required for each weighted record.
* `alias` - (Optional) An alias block. Alias record documented below.
* `alias` - (Optional) An alias block. Conflicts with `ttl` & `records`.
Alias record documented below.
Exactly one of `records` or `alias` must be specified: this determines whether it's an alias record.