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…
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…
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…
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?
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…
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…
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…
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…
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…
var keyVaultClient = new KeyVaultClient(
new KeyVaultClient.AuthenticationCallback(
azureServiceTokenProvider.KeyVaultTokenCallback));
var secret = await keyVaultClient
…
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…
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…
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
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. …