Why all managed identities not visible on Azure portal?

Najam ul Saqib 400 Reputation points
2025-04-28T09:21:48.0466667+00:00

Hi,

When I go to the "Managed Identities" section in Azure portal, it shows some identities but not the system-assigned MIs attached to the storage accounts. Why?

How can I see all the managed identities added to my Azure subscription?

Azure Role-based access control
Azure Role-based access control
An Azure service that provides fine-grained access management for Azure resources, enabling you to grant users only the rights they need to perform their jobs.
927 questions
0 comments No comments
{count} votes

Accepted answer
  1. Stanislav Zhelyazkov 27,556 Reputation points MVP Moderator
    2025-04-28T10:20:00.9933333+00:00

    Hi,

    User assigned Managed identities (Managed Identities) are standalone Azure resource and when you check that view it shows only those resources. System assigned managed identities are not standalone resource, they are part of the resource to which are created for so they are not visible under Managed Identities. As managed identities are standalone resource they can exists on your own and can be assigned to multiple resources where the system assigned managed identities cannot live on their own and are deleted with the resource as well. They also cannot be assigned to other resources. You can use the following Azure Resource graph query to see resource that have system assigned identity:

    resources | where identity.type contains "SystemAssigned" 
    

    Note that resources table does not cover all Azure resources. Some resources have their own table so you will need to check if there are other resources in other tables that can have system assigned identities and you are interested into them. Here is another example for policy assignments with system assigned identities:

    policyresources 
    | where type =~ 'microsoft.authorization/policyassignments' 
    | where identity contains "systemAssigned"
    

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.