Developer
Developer

Reputation: 31

Integrate Azure Key Vault in .NET Web API application using Secret URL

I'm trying to implement Azure Key Vault in .NET Web API app. Can anyone let me know if I can use Secret Uri directly in appsettings.json. Please find the image.Key vault Uri

Upvotes: 0

Views: 234

Answers (1)

juunas
juunas

Reputation: 58863

No, the secret URI method only works in Azure settings. To use them within your application's configuration file, you would need to manually resolve the secrets in your code with the Key Vault SDK.

Upvotes: 1

Related Questions