An administrator manages an Azure subscription and is planning the following deployment activities:
1. Create an Azure resource group named `App-RG` in the `North Europe` region, and then create a nested resource group named `DB-RG` inside `App-RG` to store database resources.
2. Deploy an Azure Virtual Machine named `Web-VM` to the `West Europe` region, and place it inside the `App-RG` resource group.
Which of the planned deployment activities can be successfully completed?
- Only activity 2Answer
- BOnly activity 1
- CBoth activity 1 and activity 2
- DNeither activity 1 nor activity 2
Answer
Only activity 2
In Azure, resource groups are flat namespaces and cannot be nested inside one another, which makes activity 1 impossible. However, resources do not inherit or depend on the region of their resource group. A resource group in one region can contain resources located in completely different regions, which makes activity 2 valid.
Step-by-Step Solution
Key Concept
Azure Resource Group limitations (no nesting) and resource region independence.