Merge pull request #13288 from ahoka/patch-1

Update Azure DNS CNAME documentation to reflect reality
This commit is contained in:
Tom Harvey 2017-04-03 16:19:49 +01:00 committed by GitHub
commit 5c2bf35157
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ resource "azurerm_dns_cname_record" "test" {
zone_name = "${azurerm_dns_zone.test.name}"
resource_group_name = "${azurerm_resource_group.test.name}"
ttl = "300"
records = ["contoso.com"]
record = "contoso.com"
}
```
## Argument Reference
@ -43,7 +43,7 @@ The following arguments are supported:
* `TTL` - (Required) The Time To Live (TTL) of the DNS record.
* `records` - (Required) The target of the CNAME. Must be a single value.
* `record` - (Required) The target of the CNAME.
* `tags` - (Optional) A mapping of tags to assign to the resource.