Reputation: 1
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
Upvotes: 0
Views: 435
Reputation: 6778
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.
Upvotes: 0