Hi
I have an ASP Net Core 3.1 application hosted in a container in AKS. I want it to be able to access secrets and certificates stored in Keyvault.
I was able to follow this guide successfully all the way to being able to checking that the secret is successfully in the secret volume.
https://docs.microsoft.com/en-us/azure/key-vault/general/key-vault-integrate-kubernetes
But now what? Do I need to access this secret as a file stored on the file directory from my ASP Net Core application? or is there a way to hook this up to Configuration the way we usually do without AKS so that accessing Keyvault secrets is seamless?
Also, I'm unclear if after following this guide, the secrets are only loaded from Keyvault once, and stored, or will they automatically get updated if the secret is changed in Keyvault.
Thanks
Sam
