During an internal IT audit, a financial company is asked to document how they ensure that their Azure resource deployments remain consistent and free of manual configuration errors. The IT team explains that they use Azure Bicep templates to define their resource configurations. Which of the following statements correctly describes a capability or structural limitation of this deployment method?
- AThe templates execute as a step-by-step procedural script that runs command-line operations in a strict sequence to configure resources.
- BThe templates allow you to define nested resource groups within a parent resource group to establish a folder-like hierarchy.
- The templates use a declarative syntax, allowing you to define the target state of the resources without writing the exact sequence of commands to create them.Cevap
- DThe templates automatically restrict all deployed resources to the same physical Azure region as the target resource group.
Cevap
The correct answer states that templates use a declarative syntax, allowing you to define the target state of the resources without writing the exact sequence of commands to create them.
Azure Resource Manager (ARM) templates and Bicep use a declarative syntax, meaning that you define the desired state of the infrastructure you want to deploy, and Azure handles the underlying deployment steps. This ensures that the deployment is consistent and repeatable.
Adım Adım Çözüm
Anahtar Kavram
Declarative infrastructure deployment using Azure Resource Manager (ARM) and Bicep templates.