Practice free →
HomeAzure AZ-104cloudcomputingaz104compute › An ARM / Bicep deployment fails midway with a pe…

An ARM / Bicep deployment fails midway with a permission error on a single resource. What's the recommended NEXT step?

ADelete every resource in the subscription and start over
BManually create the failing resource via the portal and forget the template
CFix the permission on the deploying service principal, run `New-AzResourceGroupDeployment` again — ARM is idempotent so it will reconcile only the missing pieces
DDisable IAM on the resource group
Answer & Solution
Correct answer: C. Fix the permission on the deploying service principal, run `New-AzResourceGroupDeployment` again — ARM is idempotent so it will reconcile only the missing pieces
ARM deployments are idempotent and converging — a re-run after fixing permissions completes the missing pieces. The other options destroy the IaC discipline or the data.
Solve this in the app — Azure AZ-104 practice & 24k+ MCQs →
Related questions