Home > Enterprise >  azure User assigned managed identify not showing up in the list
azure User assigned managed identify not showing up in the list

Time:06-08

I created a user assigned managed identity and added the Managed Identity Operator role - and it is listed under Managed Identities menu. However, when i go to my vm and try to add the 'User assigned' managed identity, nothing shows up in the dropdown for 'User assigned managed identities'. Both the identity and the VM are in US east.

Any idea what's missing?

CodePudding user response:

I deleted the VM and recreated it, and now the ID is visible in the dropdown list. Not sure what the issue earlier was.

CodePudding user response:

Apart from using Azure portal to list user-assigned managed identities, you can also use Azure CLI:

az identity list -g <RESOURCE GROUP>

You will get the JSON response: "type": "Microsoft.ManagedIdentity/userAssignedIdentities"

Note: Moving a user-assigned managed identity to a different resource group is not supported.

You can refer to Managed identity best practice recommendations and Which Azure RBAC permissions are required to use a managed identity on a resource?

  • Related