We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 838118f commit 5a61cbbCopy full SHA for 5a61cbb
1 file changed
modules/file_manipulation/locals.bicep.tf
@@ -53,7 +53,7 @@ locals {
53
subscriptionIdVariable = try(format(local.id_variable_template, script_file.subscriptionId), local.id_variable_template_empty)
54
resourceGroupNameVariable = try(format(local.id_variable_template, script_file.resourceGroupName), local.id_variable_template_empty)
55
deploymentType = script_file.deploymentType
56
- firstRunWhatIf = script_file.firstRunWhatIf
+ firstRunWhatIf = var.iac_type == "local" ? format("$%s",script_file.firstRunWhatIf) : script_file.firstRunWhatIf
57
group = script_file.group
58
networkType = try(script_file.networkType, "")
59
} if try(script_file.networkType, "") == "" || try(script_file.networkType, "") == local.networking_type } : {}
0 commit comments