Skip to content

Instantly share code, notes, and snippets.

@naa0yama
Last active February 2, 2020 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naa0yama/cf838d420fb61f553009586243cffee2 to your computer and use it in GitHub Desktop.
Save naa0yama/cf838d420fb61f553009586243cffee2 to your computer and use it in GitHub Desktop.
// ==================================================================
// Google Cloud Platform Cloud DNS
// ==================================================================
module "dns-private-zone" {
source = "terraform-google-modules/cloud-dns/google"
version = "3.0.0"
project_id = "exsample"
type = "public"
name = "exsample-com"
domain = "exsample.com."
dnssec_config = {
state = "on"
}
}
terraform {
required_version = ">= 0.12.0"
required_providers {
google = ">= 1.14.0"
aws = ">=2.47.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment