Reputation: 385
I'm currently trying to understand how I can deploy a Logic App from Azure DevOps. I'm trying to give my team the ability to back out changes. Is this possible without using a series of scripts?
I'd like to create a release that does the following
Upvotes: 1
Views: 5771
Reputation: 1545
There is a good article on how to prepare the logic apps for CI/CD into multiple environments using ARM template. You just need to download the ARM template for the Logic app and make changes in the template file, declaring parameters. You will also need to create parameter files for each environment. You can then create a Azure Pipelines and upload the files to the build and release definition. https://platform.deloitte.com.au/articles/preparing-azure-logic-apps-for-cicd
Upvotes: 2
Reputation: 187
You should extract the ARM template for your logic app and upload it to DevOps, then make a build and release definition
there are several helpful links available, here is one:
https://platform.deloitte.com.au/articles/preparing-azure-logic-apps-for-cicd
Edit: Link to Logic App Extractor:
Upvotes: 2