From b372fa6d925eed03ce4c551dab2d602cf46c9f39 Mon Sep 17 00:00:00 2001 From: Brandon Ooi Date: Mon, 9 Apr 2018 14:51:04 -0700 Subject: [PATCH] Google managed zone dns_name argument requires a fully qualified domain name. --- docs/d/dns_managed_zone.html.markdown | 2 +- docs/r/dns_managed_zone.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/d/dns_managed_zone.html.markdown b/docs/d/dns_managed_zone.html.markdown index cf409904291..73cb8c7aa24 100644 --- a/docs/d/dns_managed_zone.html.markdown +++ b/docs/d/dns_managed_zone.html.markdown @@ -40,7 +40,7 @@ resource "google_dns_record_set" "dns" { The following attributes are exported: -* `dns_name` - The DNS name of this zone, e.g. "terraform.io". +* `dns_name` - The fully qualified DNS name of this zone, e.g. `terraform.io.`. * `description` - A textual description field. diff --git a/docs/r/dns_managed_zone.markdown b/docs/r/dns_managed_zone.markdown index da8959576fe..5b307dd2d10 100644 --- a/docs/r/dns_managed_zone.markdown +++ b/docs/r/dns_managed_zone.markdown @@ -25,7 +25,7 @@ resource "google_dns_managed_zone" "prod" { The following arguments are supported: -* `dns_name` - (Required) The DNS name of this zone, e.g. "terraform.io". +* `dns_name` - (Required) The fully qualified DNS name of this zone, e.g. `terraform.io.`. * `name` - (Required) A unique name for the resource, required by GCE. Changing this forces a new resource to be created.