An organization is planning to deploy a new application in Azure. The administrator proposes a design that includes the following details:
1. A resource group named rg-app is created in the East US region.
2. A virtual machine is deployed in the East US region within rg-app.
3. A storage account is deployed in the West US region within rg-app to store regional backup data.
4. A resource group named rg-app-db is created inside rg-app as a nested resource group to isolate database resources and their access permissions.
Which statement correctly evaluates this proposed design?
- AThe design is not supported because a storage account located in the West US region cannot reside in a resource group located in the East US region.
- The design is not supported because Azure does not allow nesting one resource group inside another.Answer
- CThe design is fully supported because Azure allows resource group nesting and supports placing resources in different regions than their resource group.
- DThe design is not supported because all resources placed inside rg-app must be deployed in the East US region to match the resource group's location.
Answer
The design is not supported because Azure does not allow nesting one resource group inside another.
The correct design evaluation is that Azure does not support nesting resource groups. While resources can be deployed in a different region than their containing resource group (e.g., a West US storage account in an East US resource group), the proposal to create a resource group inside another resource group is invalid.
Step-by-Step Solution
Key Concept
Azure resource group limitations: nesting is unsupported, but cross-region resource placement is supported.