Don’t spill out your secrets. Use Azure Key Vault :)
I was working with account keys, SAS and passwords in my current project and was thinking about how to store them securely. Now the obvious answer was to use the amazing Key Vault, but was worried about the boilerplate code, I need to write, to extract secrets from Key Vault.
Fortunately, Microsoft has made our life easier :)
Now you can retrieve secrets without using any code. You might have a scenario, where you have an Azure function and you want to send some information to a blob storage using the function. You…