-
Azure Front Door with App Service
Solution ·Azure Front Door service was recently released.
Azure Front Door is an interesting service combining the capabilities of:
- Reverse Proxy (SSL Termination, URL based routing, URL rewrite & session affinity)
- Web Application Firewall (WAF)
- Accelerated Global routing
- Global Load Balancing between geo-distributed backend
- Some bits of Content Delivery Network (CDN, in the...
-
Authenticating an Azure service principal
Solution ·When it comes to using Service Principal in Azure, I always advise using Managed System Identity (MSI).
MSI is simpler and safer. MSI handles certificate rotations. We never see the certificate. Remember this: the safest secret is the secret you never see.
But in cases we can’t use MSI, we are going...
-
How to use Azure Data Lake Storage REST API
Solution ·Azure Data Lake Storage (ADLS) Generation 2 has been around for a few months now.
That new generation of Azure Data Lake Storage integrates with Azure Storage. This makes it a service available in every Azure region. It also makes it easier to access as it is built on foundation well known...
-
Monitoring metrics in AKS
Solution ·AKS has a nice integration with Azure monitor. Out of the box there are a couple of dashboards for common metrics.
What if you need to go beyond those metrics?
This is what we’re going to do in this article. I’m going to show how to get the CPU usage per container. Along...
-
Deploying an ARM template hierarchy
Solution ·ARM templates are a powerful way to deploy Azure resources.
It’s a declarative language which express the target state. It can therefore be used to create or update resources.
An ARM template is a JSON file. Once a target is big enough it becomes convenient to split the ARM template into multiple files....