Azure functions can access the reference of keys from key vaults when authenticated via manage identities.
Means If we copy the reference of key from key vault, add a key in configuration of function app, its value as the reference of key(eg: @Microsoft.KeyVault(SecretUri=https://xyzVault.vault.azure.net/secrets/testKey/)), enable the manage identity, then function app can directly access the value of that key in Key vault.
There is no need for code change. But can we do the same for App service?
I am looking for a way, that i put the reference of key from key vault in the configuration of app service and it is able to access it from keyVault directly once manage identity is enabled for this app service in Key Vault. and No code change is required.