Ian Lundberg
Ian Lundberg

Reputation: 1883

How to add Access Policy to Azure Logic App (Standard)

I am trying to secure my HTTP triggers using AzureAD but I am running into an issue where the Authorization setting does not appear to exist in standard logic apps only consumption as shown here:enter image description here

Can anyone help me with how I would be able to do this with a standard logic app? Thanks!

Upvotes: 0

Views: 2062

Answers (2)

RithwikBojja
RithwikBojja

Reputation: 11128

I am trying to secure my HTTP triggers using AzureAD but I am running into an issue where the Authorization setting does not appear to exist in standard logic apps only consumption as shown here:

Yes, In standard Logic Apps there is no section on Authorization as you can check below:

enter image description here

If you want to use Azure AD you can use Access control (IAM)

enter image description here

Now after clicking select the role you want to give to a particular user or group. You can also give contributor role(Complete permissions i.e access).

enter image description here

Then click on Select members.

enter image description here

Then click on Save button to add a access policy using IAM.

You can also use API Management for Restricting access or Full control on your Logic app.

You can also use Managed Identity in Logic apps .

Upvotes: 0

Related Questions