diff --git a/website/docs/r/dns_record_set.markdown b/website/docs/r/dns_record_set.markdown index 32a08d45..aceab472 100644 --- a/website/docs/r/dns_record_set.markdown +++ b/website/docs/r/dns_record_set.markdown @@ -118,16 +118,13 @@ resource "google_dns_managed_zone" "prod" { ``` ### Adding a CNAME record - -The list of `rrdatas` should only contain a single string corresponding to the Canonical Name intended. - -```hcl + The list of `rrdatas` should only contain a single string corresponding to the Canonical Name intended. + ```hcl resource "google_dns_record_set" "cname" { name = "frontend.${google_dns_managed_zone.prod.dns_name}" managed_zone = "${google_dns_managed_zone.prod.name}" type = "CNAME" ttl = 300 - rrdatas = ["frontend.mydomain.com."] }