From f64cb23334cae799b58002b4e182b95fe2bff054 Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Wed, 27 May 2015 02:50:28 +0100 Subject: [PATCH] Fix docs for aws_route53_record params --- .../docs/providers/aws/r/route53_record.html.markdown | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/website/source/docs/providers/aws/r/route53_record.html.markdown b/website/source/docs/providers/aws/r/route53_record.html.markdown index 8183258f3..092101e6a 100644 --- a/website/source/docs/providers/aws/r/route53_record.html.markdown +++ b/website/source/docs/providers/aws/r/route53_record.html.markdown @@ -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.