Last active
October 31, 2023 20:45
-
-
Save Jojoooo1/ff6d1962078f521a94961633227840f5 to your computer and use it in GitHub Desktop.
OAuth 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_oauth_project" { | |
source = "terraform-google-modules/project-factory/google" | |
version = "14.4" | |
random_project_id = true | |
random_project_id_length = 4 | |
name = "commons-oauth" | |
org_id = var.org_id | |
billing_account = var.billing_id | |
folder_id = var.commons_folder_id | |
disable_services_on_destroy = false | |
activate_apis = [] | |
labels = local.common_labels | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment