Blogging about my adventures, straight from the Azure trenches. Sharing is caring!

Subscribe to the blog

Latest Posts

Looking back at INTEGRATE 2020!

During the Build and Integrate conference, a lot of exciting announcements were made about the Azure integration space.  In this blog, I want to share with you the trends that I have identified within all that news. Goodbye BizTalk With the brand new BizTalk 2020...

My new adventure

Hi folks! I’m happy to share with you what my new adventure is all about. After careful consideration, I decided to start my very own business: Your Azure Coach. This will allow me to combine what I truly love: Azure training and advisory. Azure training Since the...

Common API Management policies

When settings up new API Management instances at customers, I notice that I often specify the same policies at the highest scope, All API's.  This blog is just a small note to myself and hopefully it might help you too. Inbound policies Two inbound policies are very...

For loop in Logic Apps

Recently, I had a scenario where I wanted to execute a Logic App action n times.  I wanted to achieve the equivalent of the following C# snippet: for (int i = 0; i < 100; i++) { //Perform action } Some research on the internet tells me that most folks solve this by...