Google managed zone dns_name argument requires a fully qualified domain name.

This commit is contained in:
Brandon Ooi 2018-04-09 14:51:04 -07:00 committed by Nathan McKinley
parent cde62c3935
commit 34e9e995e3
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.