Minor no-op website change. (#2495)

This commit is contained in:
The Magician 2018-11-19 17:22:41 -08:00 committed by Nathan McKinley
parent df00d973f9
commit 8ac2582605

View File

@ -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."]
}