Last active
October 31, 2023 17:40
-
-
Save Jojoooo1/1179a1dabe75ca074f002791f7f041bf to your computer and use it in GitHub Desktop.
DNS project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "commons_dns_project" { | |
source = "terraform-google-modules/project-factory/google" | |
version = "14.4" | |
random_project_id = true | |
random_project_id_length = 4 | |
name = "commons-dns" | |
org_id = var.org_id | |
billing_account = var.billing_id | |
folder_id = var.commons_folder_id | |
disable_services_on_destroy = false | |
activate_apis = [ | |
"dns.googleapis.com" | |
] | |
labels = local.common_labels | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment