Questions tagged [azure-keyvault]

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 helps safeguard cryptographic keys and secrets used by cloud applications and services. By using Key Vault, you can encrypt keys and secrets (such as authentication keys, storage account keys, data encryption keys, .PFX files, and passwords) by using keys that are protected by hardware security modules (HSMs). For added assurance, you can import or generate keys in HSMs (keys never leave the HSM boundary). The HSMs are FIPS 140-2 Level 2 validated.

Key Vault streamlines the key management process and enables you to maintain control of keys that access and encrypt your data. Developers can create keys for development and testing in minutes, and then seamlessly migrate them to production keys. Security administrators can grant (and revoke) permission to keys, as needed.

2719 questions
5
votes
2 answers

UWP/WinUI desktop app access to Azure Key Vault secrets

Microsoft provides several ways to gain secure access to Azure Key Vault secrets, particularly using Managed Identity or Service Principals as identity providers. However, these methods are explicitly designed to work with Azure-based resources such…
FactoryOptimizr
  • 306
  • 3
  • 13
5
votes
2 answers

Azure Function App use latest version of Key Vault Secret via Application Settings

I have a Linux Function App running on Consumption Plan that is using a Key Vault Reference in the Application Settings to retrieve and use a secret stored in an Azure Key Vault. This works fine so far. However, we have to change that secret every…
StZ
  • 105
  • 2
  • 7
5
votes
2 answers

Is there a way to store secrets in GCP, similar to Azure vault?

I have been trying to find a way to store secrets in GCP. I have explored Google Cloud KMS. It seems to be only for creating encryption keys, that can be used to encrypt say GCP storage elements. Or, maybe I missed something. I have also seen, there…
5
votes
0 answers

is it possible to trigger Tron smart contract from tronweb and Azure key vault

i'm thinking of developing a bridge between Tron and Ethereum chains for my erc-20 token on Azure and store my private keys in Azure key vault. For ethereum i've found a nice library just for this:…
5
votes
2 answers

No XML encryptor configured - When using Key Vault

I have an netcoreapp2.2 containerized application that uses azure key vault to store keys and also uses: app.UseAuthentication(); And services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) I am building/running a docker image in a…
kirikintha
  • 468
  • 5
  • 11
5
votes
2 answers

Can we store the TLS certificates in Azure Key vault as a secret and use the same in Ingress in Azure Kubernetes service

To allow Kubernetes to use the TLS certificate and private key for the ingress controller, you create and use a Secret. Instead of this cant we store the .crt and .key files in Azure Key vault and create a secret and use it in Ingress? The below…
5
votes
2 answers

How do I rename all secrets in an Azure Key Vault

I need to add a prefix to all my secrets in an Azure Key Vault. There seems to be no API or cmdlet for this, and not possible in the Azure Portal either. How can I accomplish this?
Svein Fidjestøl
  • 3,106
  • 2
  • 24
  • 40
5
votes
3 answers

Using Azure KeyVault for database password in Spring Boot application

I am working on a Spring Boot application that should be deployed to Azure. Using the following dependency I managed to use secrets from the KeyVault for sensitive application properties:
Frank
  • 2,036
  • 1
  • 20
  • 32
5
votes
1 answer

Azure Key Vault Environmental Variables

In Azure is there a way to point an environmental variable to the key vault value? so I would only point to environmental variables and azure would do the rest. Thanks in advance, Andrew
Andrew
  • 2,571
  • 2
  • 31
  • 56
5
votes
2 answers

Does Azure's Key Vault support PGP key encryption?

I would appreciate clarification and advice on the following: i am working on secure file transfer using SFTP protocol. We use PGP public/private key pair for file encryption and decryption . for a time being we keep our public/private key in local…
geekHarry
  • 53
  • 1
  • 4
5
votes
3 answers

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: AADSTS500113: No reply address is registered for the application. This is my code I use: public class KeyProvider { public string BaseUrl =>…
H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
5
votes
1 answer

Azure DevOps Release Pipeline Variable Nested/Composed/Expression

I have a release pipeline with a variable, but there doesn't seem to be any way to set the value of that variable to something that's evaluated at release time. For example, another variable. Here's a real example: All I want to do is set the value…
5
votes
1 answer

SSIS: Error from ODBC provider when inserting into Always Encrypted table using CMK in Azure Key Store

I'm trying to use SSIS (Visual Studio 2017) to insert data into an Azure SQL table with a column that's encrypted via Always Encrypted, and a column master key stored in Azure Key Vault, but I keep getting errors. Per advice I've found in other…
5
votes
2 answers

Azure Key Vault secret access intermittently failing to connect with socket exception

I have an MVC 5 web application running on .NET 4.7.2 and hosted in an Azure AppService, that uses Azure Key Vault to hold secrets. The project uses the Microsoft.Azure.KeyVault 3.0.3 NuGet package and the secrets are accessed using the…
Ira Rainey
  • 5,173
  • 2
  • 34
  • 42
5
votes
2 answers

Azure Key Vault Config Builder in 4.7.1

We can't go to .net core yet in my company. I'm trying to investigate how to best use the azure key vault to store configuration items for our api app services. I have a simple webapi project with this global.asax file: using System; using…
cobolstinks
  • 6,801
  • 16
  • 68
  • 97