Apex Global Logistics configures the following Azure Management Group (MG) hierarchy:
* Tenant Root Group
* Logistics-MG
* Operations-MG
* Subscription-Ops1
* Archive-MG
* Subscription-Arch1
The following assignments and configurations are in place:
* An Azure Policy assignment that restricts resource deployment regions is applied to Logistics-MG.
* A user named User1 is assigned the Contributor role at the Operations-MG level.
* A Resource Lock of type CanNotDelete is applied directly to Subscription-Ops1.
You move Subscription-Ops1 from Operations-MG to Archive-MG.
Which of the following describes the impact of this move on User1's permissions and the policy and lock configurations of Subscription-Ops1?
- AUser1 retains the Contributor role permissions on Subscription-Ops1 because permissions are cached, but the regional policy from Logistics-MG is no longer enforced.
- User1 loses the Contributor role permissions on Subscription-Ops1, while the regional policy from Logistics-MG and the CanNotDelete resource lock remain active on Subscription-Ops1.Answer
- CUser1 loses the Contributor role permissions on Subscription-Ops1, and the regional policy from Logistics-MG stops being enforced on Subscription-Ops1 because policy evaluation is reset upon moving parent groups.
- DUser1 loses the Contributor role permissions on Subscription-Ops1, but the CanNotDelete resource lock is automatically deleted because direct locks do not migrate with subscriptions.
Answer
User1 loses the Contributor role permissions on Subscription-Ops1, while the regional policy from Logistics-MG and the CanNotDelete resource lock remain active on Subscription-Ops1.
The correct option is correct because moving Subscription-Ops1 out of Operations-MG removes the subscription from the scope of User1's Contributor role assignment. Since Logistics-MG remains a parent of the subscription's new parent group (Archive-MG), the policy inherited from Logistics-MG continues to apply. Any resource locks applied directly to the subscription are properties of the subscription itself and remain intact after the move.
Step-by-Step Solution
Key Concept
Azure Management Groups govern subscription-level access, policy, and compliance through hierarchical inheritance.