Reputation: 11
I want to allow an Azure Function to use a Managed Identity to query the Azure REST API. I am specifically interested in Standard Logic App action results and am using a query like this:
It works fine when I use my own user's credentials. But I can't find anywhere to provide this access level to a Managed Identity. I gave the query a shot via Postman and can get a token for the Managed Identity, but the query fails with permission errors (...does not have authorization to perform action 'Microsoft.Web/sites/hostruntime/webhooks/api/workflows/runs/actions/read'...).
Does anyone know where this permission can be set?
Upvotes: 0
Views: 225
Reputation: 11
I did not realise the access assignment is done against the resource you want to provide access to (in this case, a Logic App)!
Upvotes: 0