Azure Pills 1 - Load Azure Key Vault Secrets within your local environment
Hello folks! Today we'll learn how to connect to Azure Key Vault within our local environment to read secrets. Contents Context I’m currently working inside a small team of developer and we were facing some issues when developing a micro service architecture project. All the environmental variables were spread inside files everywhere. We decided to start using Azure Key Vault to manage and easily access those secrets. Now, let’s be honest: how many times did you accidentally push some secrets that were somewhere in your code? Well that’s a bad practice first of all, so let’s dig in to find a solution for this problem. What is Azure Key Vault? Azure Key Vault is a cloud service that provides a secure store for secrets. You can securely store keys, passwords, certificates, and other secrets. Prerequisites Active Azure Account If you ...