terraform-provider-google/website/docs/r/dns_managed_zone.markdown
Paddy 0b8c9644d7
Merge pull request #1944 from colenet-gmbh/master
Importing  google_dns_managed_zone with project
2018-09-20 14:23:36 -07:00

1.8 KiB

layout page_title sidebar_current description
google Google: google_dns_managed_zone docs-google-dns-managed-zone Manages a zone within Google Cloud DNS.

google_dns_managed_zone

Manages a zone within Google Cloud DNS. For more information see the official documentation and API.

Example Usage

resource "google_dns_managed_zone" "prod" {
  name        = "prod-zone"
  dns_name    = "prod.mydomain.com."
  description = "Production DNS zone"

  labels = {
    foo = "bar"
  }
}

Argument Reference

The following arguments are supported:

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


  • description - (Optional) A textual description field. Defaults to 'Managed by Terraform'.

  • project - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

  • labels - (Optional) A set of key/value label pairs to assign to the instance.

Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

  • name_servers - The list of nameservers that will be authoritative for this domain. Use NS records to redirect from your DNS provider to these names, thus making Google Cloud DNS authoritative for this zone.

Import

Managed zones can be imported using any of these accepted formats:

$ terraform import google_dns_managed_zone.prod projects/{{project-id}}/managedZones/{{zone}}
$ terraform import google_compute_disk.default {{project-id}}/managedZones/{{zone}}
$ terraform import google_compute_disk.default {{zone}}