user9360564
user9360564

Reputation: 385

How to deploy Logic App code via Azure DevOps?

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

  1. Deploy Logic App ARM template
  2. Upload code to Logic App from VSTS/DevOps

Upvotes: 1

Views: 5771

Answers (2)

Karishma Tiwari - MSFT
Karishma Tiwari - MSFT

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

viktorh
viktorh

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

Related Questions