Before running a Bicep deployment, check what will change:
az deployment group what-if \
--resource-group myRG \
--template-file main.bicep \
--parameters main.prod.bicepparamThe output color-codes changes: green for create, orange for modify, red for delete.
For subscription-level deployments:
az deployment sub what-if \
--location westeurope \
--template-file main.bicepTip: Add --result-format FullResourcePayloads to see the complete resource definitions, not just the diff.