From fd599ea2862751eaefc4605a39889d46d6eb71ec Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Fri, 11 Feb 2022 00:30:46 +0100 Subject: [PATCH] Fix renamed argument to project factory module --- fast/stages/03-project-factory/prod/main.tf | 36 ++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/fast/stages/03-project-factory/prod/main.tf b/fast/stages/03-project-factory/prod/main.tf index a6636b016..52c336750 100644 --- a/fast/stages/03-project-factory/prod/main.tf +++ b/fast/stages/03-project-factory/prod/main.tf @@ -33,24 +33,24 @@ locals { } module "projects" { - source = "../../../../examples/factories/project-factory" - for_each = local.projects - defaults = local.defaults - project_id = each.key - billing_account_id = try(each.value.billing_account_id, null) - billing_alert = try(each.value.billing_alert, null) - dns_zones = try(each.value.dns_zones, []) - essential_contacts = try(each.value.essential_contacts, []) - folder_id = each.value.folder_id - group_iam = try(each.value.group_iam, {}) - iam = try(each.value.iam, {}) - kms_service_agents = try(each.value.kms, {}) - labels = try(each.value.labels, {}) - org_policies = try(each.value.org_policies, null) - service_accounts = try(each.value.service_accounts, {}) - services = try(each.value.services, []) - services_iam = try(each.value.services_iam, {}) - vpc = try(each.value.vpc, null) + source = "../../../../examples/factories/project-factory" + for_each = local.projects + defaults = local.defaults + project_id = each.key + billing_account_id = try(each.value.billing_account_id, null) + billing_alert = try(each.value.billing_alert, null) + dns_zones = try(each.value.dns_zones, []) + essential_contacts = try(each.value.essential_contacts, []) + folder_id = each.value.folder_id + group_iam = try(each.value.group_iam, {}) + iam = try(each.value.iam, {}) + kms_service_agents = try(each.value.kms, {}) + labels = try(each.value.labels, {}) + org_policies = try(each.value.org_policies, null) + service_accounts = try(each.value.service_accounts, {}) + services = try(each.value.services, []) + service_identities_iam = try(each.value.services_iam, {}) + vpc = try(each.value.vpc, null) }