Update resman outputs and projects

This commit is contained in:
Julio Castillo 2022-02-04 15:50:05 +01:00 committed by Julio Castillo
parent f184ced544
commit ed4fc477a7
2 changed files with 7 additions and 4 deletions

View File

@ -61,7 +61,7 @@ module "branch-network-gcs" {
module "branch-network-prod-folder" {
source = "../../../modules/folder"
parent = "organizations/${var.organization.id}"
parent = module.branch-network-folder.id
name = "prod"
iam = {
"roles/compute.xpnAdmin" = [
@ -70,10 +70,9 @@ module "branch-network-prod-folder" {
}
}
module "branch-network-dev-folder" {
source = "../../../modules/folder"
parent = "organizations/${var.organization.id}"
parent = module.branch-network-folder.id
name = "dev"
iam = {
"roles/compute.xpnAdmin" = [

View File

@ -53,7 +53,11 @@ locals {
}
tfvars = {
"02-networking" = jsonencode({
folder_id = module.branch-network-folder.id
folder_ids = {
networking = module.branch-network-folder.id
networking-dev = module.branch-network-dev-folder.id
networking-prod = module.branch-network-prod-folder.id
}
project_factory_sa = local._project_factory_sas
})
"02-security" = jsonencode({