Home > Software design >  Mysterious users in Azure Portal?
Mysterious users in Azure Portal?

Time:02-21

What are all these Identity not found "users" within my Azure Portal with Type of Unknown? Can I just delete them or...?

enter image description here

CodePudding user response:

The identity might not be found for two reasons:

  • You recently invited a user when creating a role assignment
  • You deleted a security principal that had a role assignment

If you recently invited a user when creating a role assignment, this security principal might still be in the replication process across regions. If so, wait a few moments and refresh the role assignments list.

However, if this security principal is not a recently invited user, it might be a deleted security principal. If you assign a role to a security principal and then you later delete that security principal without first removing the role assignment, the security principal will be listed as Identity not found and an Unknown type.

Reference.

  • Related