ARM template Office 365 connection for logic apps

后端 未结 2 969
野的像风
野的像风 2020-12-18 06:56

I have a logic app that I am trying to automate through an ARM Template.

The logic app requires a connection to Office 365. Below I have the template for the connec

2条回答
  •  忘掉有多难
    2020-12-18 07:34

    I found three post related to the same problem:

    • Deploying a logic app using ARM templates/powershell
    • Azure Logic Apps - ARM template to deploy filesystem API connection
    • How to set the connection string for a Service Bus Logic App action in an ARM template?

    The problem is the same for all API Connection. Connection parameters to access the specific service are stored on Azure and when you try to export the ARM Template there is nothing regarding these specific parameters (which make sens as Azure will not expose your secret, password...).

    The trick is to query Azure Resource Management API to return the parameters needed for any connection in a Logic App.

    Just follow the instructions on this article:

    • Deploying in the Logic Apps Preview Refresh

提交回复
热议问题