A company needs to automate the deployment of multiple virtual networks and storage accounts. The IT team wants to define the desired end-state of the infrastructure in a file and let Azure handle the creation order of the resources, rather than writing step-by-step execution scripts. Which Azure feature should the team use?
- Azure Resource Manager (ARM) templatesAnswer
- BSequentially executed Azure PowerShell scripts
- CNested Azure Resource Groups
- DResource Group location inheritance settings
Answer
Azure Resource Manager (ARM) templates
Azure Resource Manager (ARM) templates use a declarative syntax, which allows you to define the resources you want to deploy (such as virtual networks and storage accounts) without needing to write sequence commands. Azure Resource Manager coordinates the deployment and resolves dependencies automatically.
Step-by-Step Solution
Key Concept
Azure Resource Manager templates are declarative configuration files used to define and deploy infrastructure in a consistent, repeatable manner.
Estimated Time:45s