1,036 questions
1
vote
1
answer
82
views
Authentication failing from Azure app service to Azure Key Vault even though access policies are set
I'm trying to authenticate against an Azure Key Vault. The only authentication I've had succeed is the one buried in Visual Studio tool settings. This is the code the app service uses to reach out to ...
0
votes
0
answers
37
views
Cannot create already existing resource – when creating a ContainerApp in 2 steps (bootstrap + final) with system-assigned managed identity
Context
I'm using Pulumi (Python) with pulumi-azure-native and pulumi-azuread to deploy an Azure Container App with a system-assigned managed identity, where that identity must be a member of an ...
0
votes
1
answer
115
views
Connect-AzAccount : ManagedIdentityCredential authentication unavailable. No Managed Identity endpoint found
Background
I have a PowerShell test script that uses azuresigntool.exe to sign a file using a certificate in an hsm-backed azure key vault (Azure Key Vault - Premium tier). The certificate is a ...
0
votes
1
answer
117
views
Get certificate Linux Azure VM Keyvault extension
I am trying to get the Azure Keyvault extension for Linux to work in an Azure VM. I always get the following status:
This status is being reported by the Guest Agent since no status file was reported ...
0
votes
0
answers
95
views
How to set up cross tenant authentication using Service Principal without secret in ADF Linked service
I need to transfer data from an Azure SQL database in Tenant A to another Azure SQL database in Tenant B using Azure Data Factory. I want to use Service Principal authentication without relying on ...
2
votes
0
answers
102
views
Managed Identity does not allow a call to MS Graph API
I created a user-assigned Managed Identity and granted it Sites.Read.All permission to MS Graph API. Then, I created a notebook instance on Azure Machine Learning and assigned it the created managed ...
0
votes
0
answers
155
views
Spring boot Azure managed redis integration with managed identity where the Identity token expired every day
Problem statement
Connect to Azure managed redis from spring boot (using Jedis/Lettuce) though managed identity where the identity token expires in 24 hours.
In my application, the ...
0
votes
1
answer
74
views
Azure SqlMI with Managed Identity - Connection works when running locally but not from Azure VM
I am attempting to connect a .NET Core Winforms application to an Azure Sql Managed Instance using a user-assigned managed identity. The Managed Identity has been created and assigned to the Managed ...
0
votes
0
answers
199
views
Unable to Connect to Azure Blob Storage from Java Using Managed Identity
I am trying to connect to an Azure Blob Storage account from my VM using Managed Identity in Java. Below is the code I have implemented to establish the connection. I have made all the required ...
0
votes
1
answer
119
views
PyPI azure-identity - ManagedIdentityCredential authentication unavailable, no response from the IMDS endpoint
We're trying to use Python (azure-identity & azure-keyvault-secrets) to get secrets from azure keyvault from a VMSS instance, but keep failing. We're using a user-assigned managed identity ...
0
votes
0
answers
116
views
In Azure, how do I setup a scope for a User Assigned Manged Identity, so I can request an access token in C# with limited scope?
var credential = new ManagedIdentityCredential(managedIdentityClientId);
var token = await credential.GetTokenAsync(new TokenRequestContext(new[] {"<MY-API-SCOPE>/.default"}), ...
1
vote
1
answer
424
views
Azure Function App (Isolated) with Service Bus + Managed Identity → Getting 401 Unauthorized
We’re trying to connect an Azure Function App (Isolated process) to an Azure Service Bus Queue using a Managed Identity, but we’re constantly hitting a error when function start.
Setup
Function App (....
2
votes
1
answer
224
views
Unable to Deploy Logic App Consumption Blob connection with Managed Identity via Bicep
I am deploying a Logic App Consumption that connects to Azure Blob Storage using Managed Identity.
In Bicep, the API Connection resource (Microsoft.Web/connections) no longer supports ...
0
votes
0
answers
109
views
Bot Framework fails to obtain token with User Assigned Managed Identity from AKS pod
I'm deploying a bot backend in an AKS pod using a User Assigned Managed Identity (UAMI). The bot backend can access Azure services like KeyVault and AppConfiguration using this UAMI without issues. ...
0
votes
0
answers
102
views
How to write a Synapse Spark dataframe to an Azure Event Hub using managed identity to connect
My company demands that I connect from Synapse Spark (pyspark notebooks) to Azure Event Hubs using managed identity only (preferably the system assigned managed identity).
I have this kind of code in ...