Azure/ALZ-Bicep

WhatIf parameter in inputObject arrays in powershell script does not accept boolean

Closed this issue · 1 comments

What happened? Provide a clear and concise description of the bug, including deployment details.

$inputObject4= @{
DeploymentName = 'XXXXXXX-{0}' -f ( -join (Get-Date -Format 'yyyyMMddTHHMMssffffZ')[0..63])
Location = $Location
TemplateFile = $TemplateFile
TemplateParameterFile = $TemplateParameterFile
WhatIf = $WhatIfEnabled
Verbose = $true
}

It is used in all powershell scripts, but when I pass $WhatIfEnabled as a boolean to the array, it fails with the below array

Additional content found in JSON reference object. A JSON reference object should only have a $ref property. Path 'parResourceLockConfig.defaultValue'.

From my understanding we can pass WhatIf as a switch to New-AzResourceGroupDeployment or any other Azure deployment command, but this way of passing it as a paramteer with boolean value is failing.

Please provide the correlation id associated with your error or bug.

The issue does not allow the pipeline/command to reach Azure deployments. It fails at the point we run a powershell command.

What was the expected outcome?

A way of using WhatIf with the existing setup

Relevant log output

No response

Check previous GitHub issues

  • I have searched the issues for this item and found no duplicate

Code of Conduct

  • I agree to follow this project's Code of Conduct