PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Tuesday, November 1, 2022

[FIXED] How can you make an Azure Logic App highly available across multiple regions?

 November 01, 2022     azure, azure-front-door, azure-logic-apps, load-balancing, performance     No comments   

Issue

How can you make an Azure Logic App highly available (HA), specifically across multiple regions?

Say we have two Logic Apps, one in North Europe, one in West Europe, just in case one region dies .... I know unlikely, but ...

So we have ...

  • https://prod-18.northeurope.logic.azure.com ... etc.
  • https://prod-12.westeurope.logic.azure.com ... etc.

I've looked at Traffic Manager, but it only offers ...

  • Cloud Service
  • App Service
  • App Service slot
  • Public IP ... checked this in case it could be the IP of the Logic, but TM only shows App Service's in the subscription

Solution

It is not possible to put Traffic Manager in front of the Logic App URLs as of today (the SSL certificates returned by the Logic Apps service would no longer match, and custom SSL certs are not supported yet).

As an alternative you can put API Management in front of your two Logic Apps. This would enable load balancing and failover between the two Logic Apps. Here are a few good links to learn about setting up Logic Apps + API Management:

  • https://channel9.msdn.com/Blogs/Microsoft-Integration/Protecting-Azure-Logic-Apps-using-Azure-API-Management
  • https://blogs.msdn.microsoft.com/mvpawardprogram/2017/02/21/protecting-azure-logic-apps/

Note that Logic Apps have native / built-in support inside the Azure API Management UX.



Answered By - Szymon Wylezol
Answer Checked By - David Marino (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing