I am trying create standard logic app with workflows in it using arm template

79 Views Asked by At

Ii am trying to create standard logic app using arm template with workflows in it, but it only creates standard logic app without workflow.At the same time it creates consumption logic app also.

I tried adding microsoft.logic/workflows under resources and added action and trigger inside. But this is not helping

1

There are 1 best solutions below

0
10p On

microsoft.logic/workflows is used for Consumption Logic Apps - not for Standard Logic Apps, which are essentially well camouflaged Function Apps.

The workflows in Standard Logic Apps are nothing more than workflow.json files in respective folders.

If you already managed to create Standard Logic Apps using ARM templates, you can deploy workflows, connections, settings, etc. (see the folder structure here) into the Standard Logic Apps e.g. using the az logicapp deployment command or Azure Functions Deploy task in Azure DevOps pipelines.