Let me start with my question's background, then ask the question:
Scenario:
- Users are standard users in Azure AD - not B2B or B2C, just normal users
- The account is set to be a "Guest" account through
Set-AzureADUser -UserType Guest
Justification:
- Setting a user as a
Guest
enables setting the options on a tenant to restrict access to information about other users, for example:
- As a software developer, you have a tenant for your customers, but you can't use B2B or B2C because some Azure services don't support them or you need capabilities such as On-Behalf-Of that those offerings don't have today
Question:
What are the other implications of setting the UserType
flag to Guest
besides offering the information restriction options and invite options shown earlier?
I believe that my answer is at https://docs.microsoft.com/en-us/azure/active-directory/external-identities/user-properties where it reads in a note:
The UserType has no relation to how the user signs in, the directory role of the user, and so on. This property simply indicates the user's relationship to the host organization and allows the organization to enforce policies that depend on this property.
which means that ultimately there's no other impacts, but I would like some validation that I'm understanding that note correctly.