Microsoft 365
Formerly Office 365, is a line of subscription services offered by Microsoft which adds to and includes the Microsoft Office product line.
5,072 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I created a dynamic security group in Azure and am trying to see if i can get membership to the group based on the suffix (@suffix.com). I've tried selecting User Principal Name, but it doesn't take.
Assistance is appreciated!
Best,
IV
If the idea is to have "domain-based" membership, you can use something like this for the rule:
(user.userPrincipalName -Contains "tenant.onmicrosoft.com") -and (user.userType -ne "Guest")
I've used the default domain as example, replace it as needed.