all Technical posts

Save costs by scheduling Logic Apps

Within Logic Apps, there is a pay-per-usage pricing model. You get invoiced for every action that is executed, but also for every polling trigger (regardless whether the trigger is skipped or fired). You can reduce the cost of polling triggers by scheduling Logic Apps to run only during business hours, if your scenario allows this of course.

This blog posts describes all the detailed steps required to schedule Logic Apps automatically.

Create Active Directory application

Before an Azure AD tenant will allow an application to access the resources it is securing, a service principal must be created in the given tenant. The service principal provides the basis for Azure AD to secure the application’s access to resources owned by users from that tenant.  

Let’s start with registering an application in Active Directory and a corresponding service principal.

  • Open the Active Directory blade.
    Schedule 01
  • Go to the Properties tab.
    Schedule 02
  • Select the Directory ID, you will need it later as the Tenant ID.
    Schedule - 03 (1)
  • Go to the App Registrations tab.
    Schedule 04
  • Click Add.
    Schedule 05
  • Provide a meaningful name, select Web app / API as the application type and provide just a dummy, but valid URL. Click Create.
    Schedule 06
  • Copy the Application ID, you will need it later as the OAuth Client ID.
    Schedule 07
  • Go to the Keys tab
    Schedule 08
  • Provide a Description and choose the Expiration Setting. Click Save.
    Schedule 09
  • Copy the Value, you will need it later as the OAuth Client Secret.

Assign the right permissions

Permissions can be configured at any level: subscription, resource group or resource. They get inherited by default to the lower level, so having specific rights on a resources group applies also to all resources underneath. Just navigate to the desired blade, which is in our case the Logic App itself.

  • Go to the Access Control (IAM) tab.
    Schedule 10
  • Click Add.
    Schedule 11
  • First select a role. Take the Logic App Operator, as this allows you to read, enable and disable the Logic App.
    Schedule 12
  • In the Add Users blade, search now for the AD application that you just created. Click Select.
    Schedule 13
  • Click now OK.
    Schedule 14

Compare scheduling services

In this section, I briefly compare three Azure services that allows scheduling.
Schedule Comparison
For the sake of this blog post, I prefer to go for Azure Scheduler, as it allows me to meet the expectations without writing any code.  If you need to deal with scheduling many Logic Apps, I’d rather look into creating a script that auto-discovers all Logic Apps inside my resource group and enables/disables them all in one go via Azure WebJobs or Automation.  If you want to go that way, this simple script can be a starting point:

Azure Scheduler

  • Add Azure Scheduler to your resource group and click Create.
    Schedule 15
  • Provide ‘logicapp1-enable’ as the Job Name.
    Schedule 16
  • Click Configure Job Collection and select Create New.
    Schedule 17
  • Type ‘logicappschedules’ as the Name, choose the appropriate Pricing Tier, select an existing Resource Group and the desired Location. Click OK.
    Schedule 18
  • Click Configure Action Settings and provide the following information. The URL is derived from the Logic Apps Workflow Management API documentation.

    >Action: Https
    >Method: Post
    >URL: https://management.azure.com//subscriptions/{subscriptionId}/resourceGroups/
    {resourceGroupName} /providers/Microsoft.Logic/workflows/{workflowName}/
    enable?api-version=2016-06-01
    Schedule 19

  • Click Configure Authentication Settings and select Active Directory OAuth as the Authentication Type. Provide the ID’s that you collected from the previous steps: Tenant ID, Client ID and Client Secret. Click OK twice.
    Schedule Authentication
  • Click Configure Schedule and configure the schedule to run every weekday at 8:00. Click OK twice.
    Schedule 21
  • Click Create.
    Schedule 22
  • Ensure the Logic App is disabled.  Browse now to the created scheduler job and click Run Now to give it a try.
    Schedule 23
  • Consult the History tab to see the outcome of the job execution.
    Schedule 24
  • Hopefully you see now a successful job history.
    Schedule 25
  • You can now repeat the previous steps to schedule the Logic App to disable every weekday at 18:00.

Check Audit Trail

  • Browse now to the Activity Log of the Logic App.
    Schedule 26
  • You can see that I manually disabled the Logic App and that the Enable operation was executed by the created application identity. Nice visibility!
    Schedule - Audit

Feedback to the product team

The documentation can be improved on this subject. I took me a while to figure out the correct URL, as the documentation already provides a part of it. The authentication procedure was also not very clear to me, but via very quick assistance by the product team on Twitter, I got this sample running in 5 minutes!
Schedule Twitter
It would be nice to have a service window available on every Logic App, so you can schedule it to get automatically enabled/disabled. A similar user experience as in Azure Scheduler or the CRON expressions from Azure WebJobs would be nice. Are you in favor of this idea? Vote here!

Conclusion

You can always rely on other Azure services, in case Logic Apps does not provide the functionality out-of-the-box. This was a very user-friendly experience of scheduling a Logic App without writing a single line of code!

Hope this post can save you some time and money!

Cheers,
Toon

Subscribe to our RSS feed

Thanks, we've sent the link to your inbox

Invalid email address

Submit

Your download should start shortly!

Stay in Touch - Subscribe to Our Newsletter

Keep up to date with industry trends, events and the latest customer stories

Invalid email address

Submit

Great you’re on the list!