'How to deploy logic app with dynamic connection of Azure Storage table
I'm trying to deploy the logic app application through CI CD for each env, say DEV/TEST/ACC/PRD. Azure storage table used in logic apps should be dynamic based on the env. Could you please help me with a solution to achieve this?
Solution 1:[1]
Look at the automated deployment documentation here it shows how to setup the arm templates for deploying logic apps
In terms of the different variables for various environments you need to define them as parameters in the template
If you have sensitive information like passwords, connection strings etc you can store them in Azure Devops Library variables (or as secrets if you are in Github), guidance for that below
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ricky G |
