A systems administrator is reviewing a draft architecture document that outlines the deployment of a new environment using Azure Bicep templates. The draft makes the following assumptions:
1. A database resource group can be nested inside a virtual network resource group to consolidate management.
2. Every resource deployed by the template must share the same physical location as the containing resource group.
3. Bicep templates operate as imperative, step-by-step execution scripts that specify the order of resource creation.
Which of the following statements correctly evaluates the feasibility of these three assumptions in Azure?
- AOnly the second assumption is feasible because resources are restricted to the same region as their containing resource group, while nesting is unsupported and Bicep templates are declarative.
- BOnly the first and second assumptions are feasible because resource groups can be nested and resources must share their group's region, while Bicep templates must be declarative.
- None of the assumptions are feasible because resource groups cannot be nested, resources can reside in a different region than their resource group, and Bicep templates are declarative.Cevap
- DOnly the third assumption is feasible because Bicep templates must be written as imperative scripts, while nesting resource groups and region divergence are unsupported.
Cevap
None of the assumptions are feasible because resource groups cannot be nested, resources can reside in a different region than their resource group, and Bicep templates are declarative.
None of the assumptions are feasible. In Azure, resource groups cannot be nested inside other resource groups. Furthermore, the location of a resource group only dictates where its metadata is stored, meaning resources inside it can reside in different geographical regions. Lastly, Bicep and ARM templates are declarative configurations defining the desired state of infrastructure, rather than imperative, step-by-step scripting tools.
Adım Adım Çözüm
Anahtar Kavram
Azure Resource Manager (ARM) template structure, deployment behaviors, and Resource Group properties.
Tahmini Süre:2m 0s