Questions tagged [azure-managed-identity]

Azure AD managed identities for Azure resources.

For more information, see the documentation.

795 questions
0
votes
1 answer

What is the default MSI identity for which a token is retrieved, when querying IMDS from within a VM

This link describes how to retrieve the token for a specific managed identity, if a VM is configured with multiple identities. What is the behavior if the identity is not specified in the request? For which identity is the token returned? Is it for…
md1000
  • 149
  • 8
0
votes
1 answer

How does Azure's DnsManagementClient work with MSI? (AzureServiceTokenProvider)

I'm trying to update a TXT record in azure. I'm doing this in my local VS2017 debugging environment, but MSI seems to "work" anyway, because it knows who I am. But the "GetAsync" call fails telling me I don't have permission. What am I doing…
Josh
  • 2,958
  • 3
  • 16
  • 27
0
votes
2 answers

Obtaining an access token for MSI enabled web application

I have a Web API project hosted in Azure as web app with Managed Service identity enabled (so I don't need an app registration, right?): Now I need to obtain a token to access my API so that I can use it in POSTMAN: az login az account…
UserControl
  • 14,766
  • 20
  • 100
  • 187
0
votes
2 answers

How to add existing User Assigned Managed Identity to new Resource Group in Azure using CLI

Below is the scenario: We have a User Assigned Managed Identity in Resource Group 'A' and we are creating a new Resource Group 'B' and want to add MSI from Resource Group A to be B. How can we achieve this via Azure CLI?
0
votes
2 answers

Read Azure key vault secret through MSI in Java

I am trying to read secret in Azure Key Vault through Managed Service Identity (MSI) in Java. I want token to access the key vault through MSI. There are references available for .net to do this but did not find anything in Java. I don't want to do…
Swapnil
  • 1
  • 2
0
votes
1 answer

Using ARM template to activate MSI for an azure VM

As mentioned in the document. https://learn.microsoft.com/en-us/azure/active-directory/managed-service-identity/qs-configure-template-windows-vm MSI is not activated by just using "identity": { "type": "systemAssigned" }, We had to use vm…
0
votes
1 answer

How to create a VM using powershell and azure function

I want to create a VM using Powershell Script on Azure. This PowerShell script should run as Azure Function. This Azure Function should MSI(Managed Service Identity) to create Resources. This Azure Function should be exposed as HTTP API to hit it…
0
votes
1 answer

Is it possible to find out the port on which the MSI local endpoint is running?

Is it possible to find out the port on which the MSI local endpoint is running from inside the VM using a script (PS and Shell script)?
0
votes
2 answers

Authenticate a python application in VM with Managed Service Identity(MSI)

I am trying to use MSI example provided in below link : https://learn.microsoft.com/en-us/python/azure/python-sdk-azure-authenticate?view=azure-python#mgmt-auth-msi To do that, I created a linux VM , installed MSI extension on it and running above…
explorer
  • 737
  • 1
  • 8
  • 23
0
votes
1 answer

Does Azure MSI supports azure scheduler?

Is currently Azure MSI supports azure scheduler? Or There is any future plan for azure MSI to support Azure Scheduler? If Azure MSI does support azure scheduler, Please provide some C# implementation link as I don't see any such available…
vivek jain
  • 291
  • 3
  • 13
0
votes
2 answers

i want to call all the secret from the key vault in a single call. is there any way to do that?

var keyVaultClient = new KeyVaultClient( new KeyVaultClient.AuthenticationCallback( azureServiceTokenProvider.KeyVaultTokenCallback)); var secret = await keyVaultClient …
0
votes
1 answer

How can I remove Azure Services Authentication Extension from VS 2017?

I'm having problems with the App Service Extension in VS 2017 and would like to remove it so I can auth during development using the azure CLI instead, but I can't figure out how to remove the extension. It doesn't appear in Tools -> Extensions and…
Josh
  • 4,009
  • 2
  • 31
  • 46
0
votes
1 answer

How might I assign a service principal to an AAD group in my hosted VSTS release pipeline using PowerShell?

I have a VSTS release pipeline which provisions a new function app with a Managed Service Identity. My solution includes a shared key vault instance for my app secrets. Key vault allows a maximum of 16 access control entries so I've taken the…
0
votes
1 answer

Azure MSI support for VM (Classic)

Is there a plan for support for MSI on VM of type "classic"? I can't seem to find the "Configuration"-tab as shown in the screenshot on this guide? https://learn.microsoft.com/en-us/azure/active-directory/msi-qs-configure-portal-windows-vm
Casper Jensen
  • 551
  • 1
  • 5
  • 15
0
votes
1 answer

Exception using Azure Managed Service Identity across tenants

I'm building an Azure web app for a client that will be provisioned into many other directories for their customers. This app will call a web API in my client's directory, which will then call back to another web API in the customer's directory. …
Phil Mar
  • 145
  • 2
  • 12
1 2 3
52
53