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…
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…
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…
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":…
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…
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…
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…
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:…
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…
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…
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…
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
{
…
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…
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…
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…