1,035 questions
0
votes
1
answer
61
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
35
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
56
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
64
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
55
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
51
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
111
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
67
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
94
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"}), ...
0
votes
1
answer
230
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
152
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
85
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
77
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 ...
0
votes
1
answer
329
views
Azure key vault secret in a Power Automate flow without plain-text secrets
Building on this Azure Key Vault Environment Variable Not Showing in Power Automate Flow,
I have the same problem, and the answer that has been provided isn't a solution in my scenario.
In a Power ...
0
votes
1
answer
522
views
How to use Azure Managed Identity to generate Access Token with the appID / ClientID of a federated Entra ID App
I have an existing Entra ID Registered App who's identity I use for accessing Microsoft services from my back-end such as OAuth web-login and Microsoft Store related APIs. These all depend on my ...