An Azure service that provides customers with a serverless container experience.
Welcome to Microsoft Q&A
Hello @Dev SS I hope you are doing well.
The Identity blade is only available for Azure Container Instances that support Managed Identities. If it is missing for one of your container instances, it is usually due to the resource configuration rather than your Azure RBAC permissions.
Please check the following:
API version and deployment date: Older Azure Container Instance deployments may have been created using an API version that did not include managed identity support. Recreating the container group with a newer API version may expose the Identity option.
Region support: Verify that the region where the container instance is deployed supports managed identities for Azure Container Instances.
Resource type: Ensure both resources are Azure Container Instances (Microsoft.ContainerInstance/containerGroups) and not different resource types with similar names.
Microsoft Entra tenant and Azure Policy: Since the two container instances are in different Microsoft Entra tenants, compare whether Azure Policies or governance controls are affecting the resource configuration or portal experience.
Azure Resource Provider: Confirm that the Microsoft.ContainerInstance resource provider is registered in the subscription.
You can also verify whether the resource has an identity configured by using Azure CLI:
az container show \
--resource-group <resource-group> \
--name <container-group-name> \
--query identity
- If the command returns an identity object, the resource has a managed identity configured.
If it returns null, the container group was created without a managed identity.
If both container instances are running in supported regions and the Identity blade is only missing for one of them, please share:
The region of each container instance.
Whether they were created through the Azure portal, ARM/Bicep, Terraform, or Azure CLI.
The API version used (if known).
This will help determine whether the difference is due to the deployment configuration or a tenant-specific limitation.
References
Azure Container Instances managed identities:
https://learn.microsoft.com/azure/container-instances/container-instances-managed-identity
Azure Container Instances overview:
https://learn.microsoft.com/azure/container-instances/container-instances-overview
If my answer helped you, please consider marking it as accepted. This helps others in the community find similar solutions.