• As per your query, group accounts can be created, and they can be assigned to a particular app assignment or an app role. Please find the below powershell script to create a group that can be assigned to a role: -
$group = New-AzureADMSGroup -DisplayName "Contoso_Helpdesk_Administrators" -Description "This group is assigned to Helpdesk Administrator built-in role in Azure AD." -MailEnabled $true -SecurityEnabled $true -MailNickName "contosohelpdeskadministrators" -IsAssignableToRole $true
• For more information on delegated accounts, please refer the below link: -
https://learn.microsoft.com/en-us/azure/active-directory/governance/entitlement-management-delegate
https://learn.microsoft.com/en-us/azure/active-directory/enterprise-users/groups-self-service-management
• As far as provisioning is concerned related to user and group accounts, we can do the below tasks: -
- Automate provisioning: Automatically create new accounts in the right systems for new people when they join your team or organization.
- Automate deprovisioning: Automatically deactivate accounts in the right systems when people leave the team or organization.
- Synchronize data between systems: Ensure that the identities in your apps and systems are kept up to date based on changes in the directory or your human resources system.
- Provision groups: Provision groups to applications that support them.
- Govern access: Monitor and audit who has been provisioned into your applications.
- Seamlessly deploy in brown field scenarios: Match existing identities between systems and allow for easy integration, even when users already exist in the target system.
- Use rich customization: Take advantage of customizable attribute mappings that define what user data should flow from the source system to the target system.
- Get alerts for critical events: The provisioning service provides alerts for critical events and allows for Log Analytics integration where you can define custom alerts to suit your business needs.
Please refer below link for more information: -
https://learn.microsoft.com/en-us/azure/active-directory/app-provisioning/user-provisioning
Thanking you,