By default, when running something like az deployment group create --template-file xyz.bicep ...
, bicep is in "Incremental" mode. Because of this, it might happen that things get added while they should've been simply changed.
With --mode Complete
, this can be changed. But it's of course "a bit" annoying to always specify this. It might also mean, that it gets forgotten.
How can I tell the az
CLI that it should, by default, work in Complete mode instead?