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
0
votes
1 answer

Container not found, and we can't create it using anoynomous credentials in Azure databricks

I have below config where I am reading files from my blob storage from databricks. My first config works and it uses SAS key from blob container. and the next is one where I am unable to read with Storage account key. the error I get is Container …
ZZZSharePoint
  • 1,163
  • 1
  • 19
  • 54
0
votes
0 answers

logic app keyvault connector with bicep : connector not found

I'm trying to setup a logicapp with a keyvault-action to retrieve a secret. This logicapp is setup with bicep. Everything is created, however when opening the LA-designer i get the error 'Connector not found' The LogicApp is created with a 'system…
David
  • 15
  • 3
0
votes
1 answer

Generate Azure Key Vault Certificate with Bicep

I want to generate a certificate in an Azure KeyVault using Bicep. It's simple and straight forward to do in the Web UI and using azure-cli:…
Marko
  • 446
  • 4
  • 17
0
votes
1 answer

How to setup storage access key and spn for keyvault in terraform?

Im looking for some guidance on how to configure a devops project in terraform. The issue im having is to create an SPN and Client Secret and store the secret in the vault and allow the keyvault to use the secret in the devops project. The same…
0
votes
0 answers

Generate swagger file using dotnet tool swagger command in Azure DevOps (.Net6 + KeyVault)

I am working on a .Net 6 project with Key Vault. I am generating my swagger file in the build pipeline in Azure DevOps. I am using the dotnet tool run swagger tofile command for the same. I am getting exactly the same error mentioned in the below…
0
votes
1 answer

Azure Function app fails to retrieve secrets from Azure Key Vault in Visual Studio

I have a Visual Studio 2022 solution that includes multiple project types, one of which is a .NET Core website and the other is an Azure Function app. I'm using Azure Key Vault to store secrets, and I'm using the DefaultAzureCredential to retrieve…
0
votes
1 answer

Winforms Connection Strings in Azure Key Vault

I have a winforms app that is storing the Database Connection string in the application's config file. Obviously, this is not a great way to do this. The application is running on an Azure VM and accessed via Virtual Desktop Remote App streaming.…
Lee
  • 25
  • 4
0
votes
1 answer

Using DefaultAzureCredential Locally to access Azure Azure Key Vault (using IIS)

I've become quite frustrated trying to use Azure KeyVault to store and retrieve my secrets. My C# code retrieves secrets from the vault and runs on a local IIS website. Here's the code that attempts to read a secret from my Azure vault: var…
Ayo Adesina
  • 2,231
  • 3
  • 37
  • 71
0
votes
1 answer

python 3.10.10 - No module named 'azure'

I am trying to deploy my sample application to azure app service in linux. my application is a simple flask application that get's a key from the user and retrieves it's value from azure key vault. from azure.keyvault.secrets import…
0
votes
1 answer

I am getting exception unhandled Notfound error

I am adding below code in my program.cs file public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build().Run(); } public static IHostBuilder CreateHostBuilder(string[] args) =>…
Saile B
  • 3
  • 2
0
votes
1 answer

Using a loop in bicep gives casting error

I've read about for loops in bicep files and finally comes to this code. It has 2 arrays for users and app _(both needs different permissions). For access policies I loop over each item. param keyVault_name string param webapp_principleId…
0
votes
1 answer

Azure cli, "az keyvault secret set" to set localDB connection string errors in powershell due to Parenthesis (localDB)

In powershell, Using az keyvault secret set to set the localdb connection string as a key vault secret fails because of the closing parenthesis ")" that precedes the "\\". az keyvault secret set --name ConnectionString-messaging --vault-name…
Sam
  • 5
  • 2
0
votes
1 answer

Azure keyvault get certificate using java

I uploaded a certificate to the Azure KeyVault in pfx format, with a password and I want to use it in my java application. Here is how I download the certificate: CertificateClient certificateClient = new CertificateClientBuilder() …
Sunflame
  • 2,993
  • 4
  • 24
  • 48
0
votes
1 answer

Can I use a non-exportable Certificate from Azure Key Vault for HTTPS Client Authentication?

I work with web services / APIs which use HTTPS Client Certificates to do authentication. I currently load the certificate, including private key, from Windows cert store and pass that to HttpClient. var store = new X509Store(StoreName.My,…
0
votes
0 answers

PySpark in Azure HDinsight can not access secret value of Azure KeyVaults

I currently implement pyspark job in Azure HDinsight, and we have secret which are stored Azure KeyVaults. In theory, we can use azure-sdk-for-python to access. Additionally, we also have setup user-defined managed identity and related role…