From d54c40028857c5ce0137c28b1639fd55f6f76acb Mon Sep 17 00:00:00 2001 From: Jared Holgate Date: Fri, 19 Dec 2025 14:03:18 +0000 Subject: [PATCH] fix: classic bicep boolean --- modules/file_manipulation/locals.bicep.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/file_manipulation/locals.bicep.tf b/modules/file_manipulation/locals.bicep.tf index 1c998a1..b4151a1 100644 --- a/modules/file_manipulation/locals.bicep.tf +++ b/modules/file_manipulation/locals.bicep.tf @@ -53,7 +53,7 @@ locals { subscriptionIdVariable = try(format(local.id_variable_template, script_file.subscriptionId), local.id_variable_template_empty) resourceGroupNameVariable = try(format(local.id_variable_template, script_file.resourceGroupName), local.id_variable_template_empty) deploymentType = script_file.deploymentType - firstRunWhatIf = script_file.firstRunWhatIf + firstRunWhatIf = var.iac_type == "local" ? format("$%s",script_file.firstRunWhatIf) : script_file.firstRunWhatIf group = script_file.group networkType = try(script_file.networkType, "") } if try(script_file.networkType, "") == "" || try(script_file.networkType, "") == local.networking_type } : {}