Highlight

Some scenarios might require you do disable workflows before you deploy your code. Here is why…

Intro

Let’s picture this, you are deploying a large solution in your Azure environment. This solution has many components, logic app is one of them. In this logic app you have workflows which will check some third part service for events, it can be service bus, event grid, azure data lake event grid, etc, etc, a service that you don’t control.

If you deploy your Logic App the triggers will start executing immediately as soon as the service has been deployed. In this case if you logic app for exaple writes to a database, but your database has not yet been deployed you might start getting errors. In production nonetheless. I think we can agree that this is bad for many reasons, even false negatives will start creating operational headache.

You could always deploy logic apps last, but managing dependencies in CICD is not always possible if two services rely on each other.

Solution

The solution is to disable your logic app workflow before you even deploy them. And yes, you can do that with Logic Apps standard!

Did you know that a state of logic app (Disabled/Enabled) is being held as Azure app service app configuration? Mhmm, this was surprising to me too since consumption logic app require REST API calls and state is managed internally by Azure. But honestly, this makes sense. It’s much better this way and it had to be done in order to allow for multi-cloud deployments.

So if you want to disable your logic app workflow you need to find and update this App Service configuration parameter (it is an environment variable if you deploy to AWS/GCP/on-prem). This parameter is always following notation Workflows.<flow_name>.FlowState.

In appsettings.json it would be

{ 
    "Workflows": {
        "<flow_name>": {
            "FlowState": "Disabled/Enabled"
        }
    }
}

That means you can easily disable this before deploying logic apps, and enable when necessary. You can even ask your Ops team to enable when needed.

If you want example of disabling this via Azure DevOps CICD, here is my example

Next Actions

Here are some recommendations from me on what you can check out next if you want to learn more

Adam Marczak

Programmer, architect, trainer, blogger, evangelist are just a few of my titles. What I really am, is a passionate technology enthusiast. I take great pleasure in learning new technologies and finding ways in which this can aid people every day. My latest passion is running an Azure 4 Everyone YouTube channel, where I show that Azure really is for everyone!

Did you enjoy the article?

Share it!

More tagged posts