Questions tagged [azure-managed-identity]

Azure AD managed identities for Azure resources.

For more information, see the documentation.

795 questions
0
votes
2 answers

Azure Site Recovery - generate Managed Service Identity

When testing ASR, the ASR VM's don't get a managed service identity. Is there a best practise to deal with this scenario - including assigning permissions to the MSI, in such an event?
0
votes
1 answer

How to pass Managed Identity Object ID to KeyVault template in Azure Blueprints

So, I am trying to spin up a Managed Identity and a KeyVault using Blueprints. I have an individually working template for each. My endgoal is to spin up both resources along with a few more together in the same blueprint. The issue I'm having is…
0
votes
1 answer

Errors using Get-AzUserAssignedIdentity on module 0.7.3 and 0.7.2 "Extended 'versions' can't be converted to a boolean"

The following commands were previously working from a local PS session using module Az.ManagedServiceIdentity version 0.7.2, but broke once I updated to 0.7.3, now can't get it to work again even after downgrading the module version. I'd like to use…
0
votes
1 answer

what is the best way to use managed identities feature for AKS cluster?

through my testing some new features for AKS clusters i want to enable managed identities feature for my azure k8s cluster, can anyone just simply tell me what the main benefit to use this ? and do i need in this way an externel DNS zone ?
jorg-m
  • 41
  • 2
  • 8
0
votes
1 answer

How to reset the password of the Service Principal created for the System Managed Identity in Azure?

I created an Azure Container Registry with the System Managed Identity. I know how to examine the Service Principal created for it: C:\> az ad sp show --id 4***8 { "accountEnabled": "True", "alternativeNames": [ "isExplicit=False", …
mark
  • 59,016
  • 79
  • 296
  • 580
0
votes
1 answer

Cannot access ADLS from Synapse Analytics

I have; A master key. A database scoped credential. An external data source. File format. A user created managed identity for Azure SQL Server. RBAC contributor permission for that managed identity on my ADLS storage account. When I execute the…
GettingItDone
  • 523
  • 8
  • 26
0
votes
1 answer

Can vsts agent connect to ADO using managed identity?

I think it would make sense, to enable the VSTS build-agents being able to use managed identities of the build agents' VMs to authenticate with the ADO queue and poll the jobs. Using PAT (personal access token) for that is a bit cumbersome. Is…
Lukas Futera
  • 107
  • 9
0
votes
1 answer

Accessing Azure Key Vault from JAVA Azure App Service using managed identities

I have a spring boot application deployed in Azure App Service that access Azure Key Vault using User Managed identities. I have followed the steps mentioned below: Created an User Managed Identity Deployed the spring boot app in Azure App…
0
votes
1 answer

What should be the resource group of a user assigned managed identity?

I have app services running in different regions and I wish to assign all of them a managed identity. I cannot use a system managed identity, so it must be a user assigned one. Creating one requires a resource group. So, the question is - what is…
mark
  • 59,016
  • 79
  • 296
  • 580
0
votes
1 answer

Retrieve Datafactory ManagedID in ARM template

I have a nested template to create a datafactory and I want to retrieve its managed identity to the master template. However, I'm having a problem using the reference function as shown below. It expects 1-2 arguments but the online documentation…
0
votes
1 answer

Using MSI to access Azure Key Vault in C# .Net

Since I am new to Azure, this question might be silly. I am trying to build a service to provision and manage a cluster of VMs. For security concerns, I don't want to put some sensitive data on each cluster. So I decide to provision an Azure Key…
0
votes
1 answer

Secure Azure App Service using Managed Identity (Asp.net Framework 4.7.2)

i'm trying to secure communication between two azure app services. i tried to use Managed Identity for that but the only thing i can find is: securing Database access using Managed identity. So i'm kinda lost here, is Managed Identity can secure…
0
votes
1 answer

Is there an easy way to understand how Azure Managed Identities work and why they are secure?

I was reading https://learn.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview and midway through realized my brain was boiling. Is there a more intuitive explanation to what it is and why it eliminates the need…
mark
  • 59,016
  • 79
  • 296
  • 580
0
votes
1 answer

Connection with Azure File Share using MSI not working

I am trying to connect to Azure File Share but it is throwing Authentication Error. AzureServiceTokenProvider tokenProvider = new AzureServiceTokenProvider(); string accessToken = await tokenProvider.GetAccessTokenAsync("https://storage.azure.com/",…
0
votes
1 answer

Storage Accoung V2 access with firewall, VNET to data factory V2

I have blob containers in storage account V2 having firewall settings with VNet and only allowed access to Microsoft Trusted Services. Now, as long as the firewall is restricting other services, I am unable to get test connection succeeded for data…