A cloud-based identity and access management service for securing user authentication and resource access
Hi Ella,
If you are looking to utilzie nested Azure AD/Entra groups then take a look at this article:
I typically use Job Titles/Departments as an identifier for where people should be given access too. Have a look at the following page for what rules are available for dynamic groups:
Dynamic membership rules for groups in Azure Active Directory
https://learn.microsoft.com/en-us/azure/active-directory/enterprise-users/groups-dynamic-membership
Example:
(user.department -eq "Sales") -and (user.jobTitle -contains "SDE")
This example would include people in the Sales department with the Job Title SDE.
If this is helpful please accept answer.