❔ Key Vault + AppConfiguration usage
In my past I've been using it as following:
https://learn.microsoft.com/en-us/azure/azure-app-configuration/use-key-vault-references-dotnet-core?tabs=core6x
- Secret configuration values, like passwords, connection strings, or API keys are added to Azure KeyVault. References to these values should be placed in the Azure AppConfiguration
- Configuration values specific to a single service should be placed in the appsettings.json or appsettings.{ENVIRONMENT}.json file for that service
- Shared configuration values among services should be added to Azure AppConfiguration
https://learn.microsoft.com/en-us/azure/azure-app-configuration/use-key-vault-references-dotnet-core?tabs=core6x
In this tutorial, you learn how to use Azure App Configuration's Key Vault references from an ASP.NET Core app
