An organization is designing a subscription governance model to allow network security administrators to manage network security rules across multiple subscriptions. To follow the principle of least privilege, the administrators must only be able to elevate their access on-demand using Just-In-Time (JIT) access. You need to configure this administrative model. In which order should you perform the configuration steps?
- 1Create a parent Management Group and move the target subscriptions into it.
- 2Create a custom Azure RBAC role with the required network security permissions, specifying the new Management Group in the AssignableScopes property.
- 3Create a Microsoft Entra ID security group.
- 4Assign the custom Azure RBAC role to the Microsoft Entra ID security group at the parent Management Group scope.
- 5Configure Microsoft Entra Privileged Identity Management (PIM) for Groups to make the administrators eligible for the security group.
Cevap
To implement this design, first create a parent Management Group and associate the subscriptions. Next, create a custom Azure RBAC role with the required permissions and set its assignable scope to the Management Group. Then, create a Microsoft Entra ID security group and assign the custom role to it at the Management Group scope. Finally, configure PIM for Groups to make users eligible for the security group, enabling JIT access.
Establishing the Management Group first provides the container needed for scope inheritance and is required before configuring custom roles targeting that scope. The custom role must specify the Management Group in its assignable scopes. The security group must be created next so that the custom role can be assigned to it. Assigning the custom role to the group at the Management Group scope ensures the permissions are inherited by all child subscriptions. Finally, configuring PIM for Groups enables Just-In-Time membership, fulfilling the requirement for JIT administrative access.
Adım Adım Çözüm
Anahtar Kavram
Group-based Azure RBAC scope inheritance combined with Microsoft Entra PIM for Groups to achieve Just-In-Time least privilege management.