Category: Azure
-
Microservice and Azure Integration Part 4 : Adding Azure KeyVault
In this post, I’m going to add Azure KeyVault integration to my little microservice. The beauty of KeyVault is it’s layered security. I don’t need to keep anything in my appsettings.json, or in my secrets.json. KeyVault takes care of all of that now, meaning my code doesn’t contain any hardcoded secrets. The trick to doing…
-
Microservice and Azure Integration Part 3 : Adding Azure AppConfiguration
In the previous post, I created the microservice and got it’s output logging to both the console and a file target using NLog. In this post I’ll be creating an AppConfiguration resource in Azure, reading a value from it in the microservice and then, acting accordingly on the value. 1. Setting up AppConfiguration in Azure2.…