I have an Azure App Service that uses HttpClient to call a Logic App with an HTTP trigger. The App Service has a system-assigned Managed Identity. I want to restrict access to the Logic App to only this Managed Identity so that only the App Service…
I have a Logic App in which I want to get info/URLs for documents that match a certain query via HTTP request, and then looping over the results in a 'for each' to the read these documents using a Sharepoint task like 'Get file content'.
To do so, I…
I creating an Azure Function app with ServiceBusTrigger. I am running Visual Studio under an account which is also used to logging into Visual Studio.
I have added this user account under Service Bus Access Control & assigned Azure Service Bus Data…
There is an option to create Managed Identity from terraform for Stream analytics job (azurerm_stream_analytics_job, using identity block).
And it is possible to use Managed Identity to connect to databases (as explained here)
But I could not find…
I have a .net Core 3.1 web app that connects to different Storage Accounts using Azure MSI.
The services are initialized using the Azure.Core.Extensions nuget package.
var options = new BlobClientOptions
{
Diagnostics =
…
I have an Azure Functions project, with a Function that uses a Service Bus binding (that is used to Listen on a subscription and to Send to a topic).
The Azure functions deployment is running under a managed identity. And as we want to deploy…
We're change Kusto client authentication from application key to Managed Identity. Our service can access Kusto by system management identity from VMSS. The API we are using is WithAadSystemManagedIdentity().
But, local desktop cannot be…
In my organization I have a requirement to set "Allow storage account key access" on a storage account to Disabled, such that Primary and Secondary Access keys cannot be used to connect to the storage account:
When I create a simple Consumption…
I have a resource defined in my bicep file like this below, these are two of the resources in my file, i deploy an azure function with the test_resource below, this works fine.
resource test_resource 'Microsoft.Web/sites@2021-03-01' = {
name:…
I am trying to use Managed Identity for both Azure Key Vault and Azure App Config.
The following code works when I deploy to my Azure App Service - but when I run locally the SecretClient code succeeds and the AppConfig code fails.
For my KeyVault…
We have an existing Function App deployed to Azure and secured with Azure AD authentication.
The functions are set to anonymous access as a result, so one cannot use a function key to authenticate.
We can successfully deploy Logic App and connect to…
I am using the library com.azure.spring:azure-spring-boot-starter-servicebus-jms:3.14.0 and I am trying to avoid the usage of a connection string by using a managed identity, but I wasn't able to find anything related on the internet. I also…
I would like to be able to sign in users to my web application using a managed identity to exchange the authorization code for the access token instead of supplying a client id and secret. My aim is to make the deployed web application entirely…
We have total 130 subscriptions among 3 management groups.
We are have few private link policies for creating A record for few resources that is using system managed identities.
Due to this multiple identities is getting created which is point of…
I have a .NET 6 web API project that calls Graph as the app (rather than on behalf of the user).
I'm using the Microsoft.Identity.Web package, and my Program.cs has this code to initialise…