An organization implements an Azure governance structure. Under the root management group, they have a management group named Production-MG that contains a single subscription named Prod-Sub.
A cloud administrator performs the following actions in sequence:
1. Assigns an Azure Policy to Production-MG that denies the creation of any resource without a tag named Environment set to Production.
2. Creates a resource group named rg-services in Prod-Sub in the East US region, and applies the Environment: Production tag directly to the resource group.
3. Attempts to deploy a new virtual network in the West US region inside rg-services without adding any tags to the virtual network.
4. Attempts to create a new resource group named rg-data inside rg-services to isolate database resources.
Which of the following outcomes will occur?
- The virtual network deployment fails because resources do not inherit tags from their resource group, and the creation of the child resource group fails because resource groups cannot be nested.Answer
- BThe virtual network deployment succeeds because it automatically inherits the tag from the resource group, but the creation of the child resource group fails because resource groups cannot be nested.
- CThe virtual network deployment fails because resources must reside in the same region as their resource group, and the child resource group is successfully created inside the parent resource group.
- DThe virtual network deployment succeeds because parent management group policies do not apply to individual resources inside a resource group, and the child resource group is successfully created inside the parent resource group.