Reputation: 97
we use SCIM 2.0 to provision accounts from a source, like AD, to our app. However, increasingly customers move to AzureAD. Provision 'normal' acounts from Azure AD is supported and is straight forward. However, we can find no information on how group/functional/delegated account can be created in AzureAD with assigned users and thus also not how to provision those accounts. Currently our customers seem manage these accounts directly in ExchangeOnline, which makes that there are two distinct sources, and these accounts can not be provisioned from Exchange using SCIM.
Anyone can help to understand what is and what is not possible in AzureAD in terms of these accounts and provisioning?
Thanks!
Regards, Rick
Upvotes: 0
Views: 171
Reputation: 5159
• 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: -
Please refer below link for more information: -
https://learn.microsoft.com/en-us/azure/active-directory/app-provisioning/user-provisioning
Thanking you,
Upvotes: 0