February 17, 2022

Using a self-signed certificate with an Azure Application Gateway and App Service with end-to-end TLS encryption

By |2022-02-17T22:21:50+00:00February 17th, 2022|Categories: App Services, ARM, Azure, Azure DevOps|

You can use a self-signed certificate from your very own certificate authority, for deploying your application gateways and app services, with end-to-end TLS encryption. This approach should only be used for development environments, and not in a production environment. This approach is handy because it will allow you to save a lot of money on TLS [...]

October 27, 2021

Azure App Service, Azure Ad Authentication, Application Gateway and Path Based Routing

By |2021-10-27T20:43:50+00:00October 27th, 2021|Categories: App Services, ARM, Azure|

I recently had a requirement, to set up numerous Azure App Services, each in their own app service plan. They were all using a shared custom domain name and one common SSL certificate. Some of the app services had to allow anonymous access, while others had to be secured using Azure AD Authentication. Using an application [...]

July 6, 2020

Nested .NET Core App settings in an ARM template

By |2020-07-06T18:09:53+00:00July 6th, 2020|Categories: ARM, ASP.NET Core, Azure, Azure DevOps, C#|

I was not able to find a post that succinctly demonstrated this, so I wanted to share my solution here. I was trying to deploy a .NET Core web application with some app settings inside an ARM template. The app settings are contained as an object with nested properties, like so: "AzureStorageConfig":{ "AccountName":"this-is-a-dummy-value", "AccountKey":"this-is-a-dummy-value", "ImageContainer":"this-is-a-dummy-value", [...]

Go to Top