Add missing context interpolations (#3659)
This commit is contained in:
@@ -80,7 +80,6 @@ module "organization" {
|
||||
source = "../../../modules/organization"
|
||||
count = local.organization_id != null ? 1 : 0
|
||||
organization_id = "organizations/${local.organization_id}"
|
||||
asset_feeds = lookup(local.organization, "asset_feeds", {})
|
||||
logging_settings = lookup(local.organization, "logging", null)
|
||||
context = {
|
||||
condition_vars = {
|
||||
@@ -110,6 +109,7 @@ module "organization-iam" {
|
||||
source = "../../../modules/organization"
|
||||
count = local.organization.id != null ? 1 : 0
|
||||
organization_id = module.organization[0].id
|
||||
asset_feeds = lookup(local.organization, "asset_feeds", {})
|
||||
context = merge(local.ctx, {
|
||||
condition_vars = merge(
|
||||
local.ctx_condition_vars,
|
||||
|
||||
Reference in New Issue
Block a user