Skip to content

Instantly share code, notes, and snippets.

@birdayz
Last active July 10, 2020 21:44
Show Gist options
  • Save birdayz/723d4b9c42336e8d3fde9a536e984507 to your computer and use it in GitHub Desktop.
Save birdayz/723d4b9c42336e8d3fde9a536e984507 to your computer and use it in GitHub Desktop.
resource "google_dns_record_set" "zone_subzone_ns" {
name = "subdomain.${google_dns_managed_zone.zone.dns_name}"
type = "NS"
ttl = 300
managed_zone = google_dns_managed_zone.zone.name
rrdatas = google_dns_managed_zone.sub_zone.name_servers
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment