When deploying infrastructure using Azure Resource Manager (ARM) templates, you must specify the exact, step-by-step commands to create each resource in the correct order. Is this statement true or false?
Answer: Answer
Answer
The statement is false because ARM templates are declarative configurations where Azure Resource Manager determines the orchestration and deployment steps automatically.
The correct answer is false because ARM templates utilize a declarative syntax, which allows you to define the desired end-state of your resources without needing to script the step-by-step commands or execution order.
Step-by-Step Solution
Key Concept
Declarative vs. Imperative deployment models in Azure Resource Manager
Estimated Time:45s