Questions tagged [azure-managed-identity]

Azure AD managed identities for Azure resources.

For more information, see the documentation.

795 questions
3
votes
4 answers

How can I use a SystemAssigned identity when pulling an image from Azure Container Registry into Azure Container Instances?

I want to create a container (or container group) in Azure Container Instances, pulling the image(s) from Azure Container Registry - but with using a SystemAssigned identity. With that I want to avoid using ACR login credentials, a service principal…
3
votes
1 answer

How can I use Microsoft Identity Platform with Delphi VCL programs?

I need to use MS Identity Platform with a Delphi desktop VCL program to log into an Azure SQL DB. I have read and mostly understood https://learn.microsoft.com/en-us/azure/active-directory/develop/. There are multiple Quick Start examples for…
Debby
  • 53
  • 6
3
votes
1 answer

Using Managed Identity in Azure Batch to Authenticate with Key Vault using Python in a Batch Pool

I am trying to use the system-assigned managed identity of azure batch to access the Azure Key Vault. I have found some code online, but I didn't know if this is possible or the certificate route is the only possibility. I have enabled a managed…
3
votes
1 answer

Azure kubernetes - multiple managed identity?

We are planning to deploy multiple applications on our single Azure kubernetes cluster, each application will have its own set of Azure resources - eg: Key vault, Storage. I am planning to provision individual managed identities per application and…
3
votes
1 answer

Link Azure SQL Database to Data Factory using managed identity

I have been trying to use Managed Identity to connect to Azure SQL Database from Azure Data factory. Steps are as follow: Created a Linked Service and selected Managed Identity as the Authentication Type On SQL Server, added Managed Identity…
3
votes
1 answer

Cannot Add Managed Identity to Synapse Pool

I am running an Azure Synapse workflow through the Synapse studio and running into this error: { "errorCode": "2200", "message": "ErrorCode=FailedDbOperation,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Please…
C.Nivs
  • 12,353
  • 2
  • 19
  • 44
3
votes
1 answer

Login failed for user ''. Token is expired when using Azure Function app and Azure SQL Service using Managed Identity

I am using a function app which is service bus triggered. It connects to Azure SQL Server using Managed Identity. The connection is created using the following code. new SqlConnection(this.ConnectionString) { //…
3
votes
2 answers

Read Azure Key Vault Secret from Function App

This Python script is deployed to run from Azure Function App on Linux Consumption plan, This script is expected to read secrets from Azure Key Vault. Apart from code deployment, following configurations are made System Assigned Managed Access…
3
votes
1 answer

Can I add Managed Identity to my ADO pipeline?

Is there any way how can I add Azure Managed Identity to VM agent running my Azure DevOps pipeline? I want to be able to run curl command inside bash task and obtain the access token. The command I want to run inside a pipeline is similar to this…
Igor
  • 1,349
  • 12
  • 25
3
votes
4 answers

Why should I use managed identity?

What is the benefit of using Managed Identity to access Azure services? What I often see mentioned is that thanks to this you don't commit secrets to configuration files. But I'm deploying all resources using ARM templates and I also don't have any…
3
votes
2 answers

Managed Identity w/Azure Functions and Storage accounts

What is the appropriate way to use managed identity with Azure Functions and Storage accounts if the the AzureWebJobsStorage app setting is required by the function host? Is there a managed identity version of the storage account connection string…
Joe Eng
  • 1,072
  • 2
  • 15
  • 30
3
votes
1 answer

User assigned managed identity with azure function - is it possible?

I was able set up System assigned managed identity for function that listens service bus: I turned on System Assigned identity in my function, changed connection string to 'Endpoint=my_endpoint;Authentication=ManagedIdentity' and assigned a role for…
SimonD
  • 1,441
  • 2
  • 18
  • 30
3
votes
1 answer

Authenticated REST API call to Azure Service Bus using Managed Identity

Azure Service Bus supports managed identity access, however the only method I've found to for example send a message to a queue is using this approach that requires code and the Service Bus SDK: var tokenProvider =…
3
votes
2 answers

Query Azure SQL Database from local Azure Function using Managed Identities

I want to query an Azure SQL Database from an Azure Function executing on my machine in debug using Managed Identities (i.e. the identity of my user connected to Visual Studio instead of providing UserId and Password in my connection string). I…
3
votes
2 answers

The term 'New-AzureRmUserAssignedIdentity' is not recognized as the name

I'm trying to create user assigned identity, the documentation says that 6.13 should include this function: https://learn.microsoft.com/en-us/powershell/module/azurerm.managedserviceidentity/new-azurermuserassignedidentity?view=azurermps-6.13.0 I…