skip to Main Content

Can an Azure Logic app which is under consumption plan call the the azure function which is under app service plan with VNet integration.

2

Answers


  1. Yes, you can utilize Azure functions in logic apps with VNet integration, however, you must take into consideration that you can only use HTTP triggered functions.

    Below is my logic app flow that triggers azure function app service plan with VNet integration.

    enter image description here

    In my Function app:

    enter image description here

    Login or Signup to reply.
  2. Yes, you can. Depending on the size of your project, I’d recommend considering use of an APIM resource in between the Logic App and the Function App for abstraction and reduction of fragility. Not to mention APIM giving you the ability to support customer level api-keys with different rate limits, etc. in the future.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search