I'm storing database connection string in Azure KeyVault and would like to use / remap keyvault secret DB-DEV-CONNECTION-STRING
to ASPNETCORE_ConnectionStrings__ConnectionString
environment variable so my server can read it as configuration property during startup.
I'm using web configuration (not YAML) and don't know how to reference variable so that it is not called DB-DEV-CONNECTION-STRING
but ASPNETCORE_ConnectionStrings__ConnectionString
.
I have linked keyvault in my piplene and secret is succesfuly downloaded when build job starts.