Questions tagged [azure-managed-identity]

Azure AD managed identities for Azure resources.

For more information, see the documentation.

795 questions
2
votes
1 answer

Authorizing Azure Function App Http endpoint from Data Factory

We are currently developing an ETL solution in Azure Data Factory that requires calling out to an Azure Function App HTTP trigger. Our Data Factory instance has a Managed Identity configured and I was wondering how I can secure the Azure Function…
2
votes
1 answer

Access Time Series Insights Gen2 from Azure App Service

Access to Time Series Insights is handled by acquiring an access token for a Application in Azure Active Directory which is being given access to time series insights according to the documentation. In a scenario where my application is running in…
2
votes
1 answer

How to run EF6 code-first migrations from Visual Studio with Managed Identity

I have a system managed identity created and working from both Azure and debugging within Visual Studio 2019 via Azure Service Authentication, however when I run Update-Database from the Package Manager Console I am unable to apply the code-first…
2
votes
1 answer

How to deploy ARM template with user managed identity and assign a subscription level role?

The ARM template below is supposed to create the following resources: resource group - user managed identity - subscription level Contributor role assignment Currently the deployment is failing with the error "error": { "code":…
2
votes
1 answer

Generate user delegation SAS token running locally

I'm creating solution based on this [documentation][1]. I have it almost working as I want to but it works only when deployed to Azure. App Service has Managed Identity configured and it is assigned Storage Blob Data Contributor role. Is there any…
2
votes
2 answers

Error Getting Managed Identity Access Token from Azure Function

I'm having an issue retrieving an Azure Managed Identity access token from my Function App. The function gets a token then accesses a Mysql database using that token as the password. I am getting this response from the function: 9103 (HY000): An…
warnerm06
  • 654
  • 1
  • 9
  • 20
2
votes
2 answers

Azure Storage Queue and Managed Identity

I am having trouble connecting my Logic App to an Azure Storage Queue. I followed MS guide for setting it up: https://learn.microsoft.com/en-us/azure/logic-apps/create-managed-service-identity Here is my test Logic App to post something to my…
2
votes
4 answers

SQL Azure connection error with User Assigned Managed Identity 'Login failed for user'

I have a function app that is assigned a user assigned managed identity, and it uses that to connect to the SQL database. This was working fine for a few days, but then suddenly stopped working, without any changes to db or the function app. Error:…
2
votes
3 answers

Azure Service Bus authentication with User Assigned Managed Identities

We need run apps accessing Azure Service Bus (ASB) from Azure App Services and Azure Functions. We need to auth using user assigned identities. We write following code that works with system-assigned identities, but not user-assigned identities: var…
2
votes
2 answers

How to use User-Managed Identity from Azure Cloud Function (python) in making a request to Azure KeyVault?

My current Setup: My DevOps guy has created a User Managed Identity and have added it to the Access policy of Azure key Vault. I have Created a function app testing-01 and assigned the User-ManagedIdentity to it under platform settings. I am using…
2
votes
1 answer

Trying to connect Azure SQL database from Azure ML Service using MSI authentication (Without username and passowrd connect the Azure database)

I am trying to connect the Azure SQL Database from Azure Machine Learning Service with MSI Authentication (Without a username and password). I am trying to Machine learning model on azure Machine learning service that purpose I need data that' why I…
2
votes
1 answer

Using Azure Managed Service Identities to scale App Service Plan, but none listed

I am attempting to set up an Azure Function that will scale our App Service Plan to be larger during business hours, and smaller outside of them. I drew from the answer to this question. public static class ScaleUpWeekdayMornings { …
2
votes
2 answers

Azure SQL Server Database connect using Azure Managed Service Identity (MSI)

I want to Access the Azure SQL Database using python Azure Functions with MSI (Managed Service Identity) authentication. I am trying to find out the how to connect Azure sql with MSI from azure functions for python but i didn't get any…
2
votes
2 answers

How do I specify a user-assigned managed identity in Azure API Management

Setting a system-assigned managed identity in Azure API management is easy - just flip the toggle in the blade, or use the following code snippet in your ARM template "identity" : { "type" : "SystemAssigned" } However, I have several instances…
GarethJ
  • 6,496
  • 32
  • 42
2
votes
1 answer

java.lang.IllegalArgumentException: Cannot create Shared Access Signature unless the Account Key credentials are used by the ServiceClient

I am trying to use MSI to access Azure Blob Storage containers to generate shared access signature. But every time i am trying to access , i am getting following error: `java.lang.IllegalArgumentException: Cannot create Shared Access Signature…
KCS
  • 2,937
  • 4
  • 22
  • 32