Is the following statement true or false?
Redeploying an Azure Resource Manager (ARM) template to a resource group deletes and recreates all existing resources defined in the template, even if their configuration has not changed.
Cevap: Cevap
Cevap
The statement is false. Redeploying an Azure Resource Manager (ARM) template does not delete and recreate existing resources that are unchanged.
The statement is false because Azure Resource Manager (ARM) template deployments are idempotent and run in incremental mode by default. When a template is redeployed, ARM compares the resources defined in the template with the existing resources in the resource group. It only creates new resources or updates those with configuration changes, leaving unchanged resources unmodified rather than deleting and recreating them.
Adım Adım Çözüm
Anahtar Kavram
ARM Template Deployment Modes and Idempotency