Top "Azure-keyvault" questions

Microsoft Azure Key Vault is a cloud-hosted service that allows applications to encrypt/decrypt data using (HSM stored) cryptographic keys and store and retrieve secrets.

Azure key vault: access denied

I have the following code for obtaining a secret from the Azure key vault: public static async Task<string&…

c# azure azure-keyvault
KeyVaultErrorException: Operation returned an invalid status code 'Forbidden'

I'm trying to set up my web app, hosted in Azure to read settings from Azure KeyVault. I've been following …

azure asp.net-core azure-web-app-service azure-keyvault
How to get connection string out of Azure KeyVault?

A hypothetical web-site currently connects using: public SqlConnection CreateConnection() { DbConnection connection = new SqlConnection(); connection.ConnectionString = GetConnectionString(); connection.Open(); return connection; } …

c# azure security connection-string azure-keyvault
Azure Keyvault - "Operation "list" is not allowed by vault policy" but all permissions are checked

I am accessing KeyVault with .NET client with an AAD application. Although all permissions under secrets are enabled for this …

c# .net powershell azure azure-keyvault
How do I access Azure Key Vault using user credentials?

I'm trying to write a simple application to access Azure KeyVault using my own, domain joined credentials. I don't know …

c# azure azure-keyvault
What is difference between Keys and Secrets in Azure Key Vault?

It would be great to know what are they, what are they used for why would one prefer one versus …

azure azure-keyvault
How to serialize and deserialize a PFX certificate in Azure Key Vault?

I have a bunch of strings and pfx certificates, which I want to store in Azure Key vault, where only …

c# azure certificate x509certificate2 azure-keyvault
Azure Key Vault - AADSTS70001: Application with identifier "xxx" was not found in the directory "xxx"

I am working on – Using azure key vault in web application. Implemented steps below, but getting error. Steps: Created azure …

azure azure-keyvault
No reply address is registered for the application when there is one configured

I'm making a WPF application and it must get a key from Azure Key Vault, but I've always this error: …

c# wpf azure-active-directory azure-keyvault
Unable to get access to Key Vault using Azure MSI on App Service

I have enabled Managed Service Identities on an App Service. However, my WebJobs seem unable to access the keys. They …

azure azure-webjobs azure-web-app-service azure-keyvault azure-managed-identity