Azure trainings!
Infused with experience from the field, brought with lots of passion!

Enforce Azure AD authentication on Service Bus

Enforce Azure AD authentication on Service Bus

Security is one of my main concerns when building PaaS solutions in Azure.  Since private endpoints have GA’d, I always apply network security on my projects.  Unfortunately, private endpoints for Service Bus are only available in the Premium tier, which is a...
Strange issue when creating a Service Bus namespace

Strange issue when creating a Service Bus namespace

Recently, I wanted to create a Service Bus namespace via Bicep.  The simplified resource looked like this: resource serviceBus ‘Microsoft.ServiceBus/namespaces@2021-06-01-preview’ = { name: ‘test-sb’ location: resourceGroup().location sku: {  ...
Improving the user experience of Azure Policy

Improving the user experience of Azure Policy

A solid governance is the foundation of a successful Azure implementation.  I often refer to it as “freedom within the frame”.  As an organization, you configure the rules of the game, e.g. allowed locations, no public IPs, restricted service tiers…...
Send API inspector traces to Application Insights

Send API inspector traces to Application Insights

In the December 2020 release of Azure API Management, there was a release note that drew my attention: You can now log API inspector traces to Application Insights and Azure Monitor by setting the verbosity property of the service/diagnostics resource to debug. Azure...