Skip to main content
Filter by
Sorted by
Tagged with
36 votes
6 answers
80k views

I have the following code for obtaining a secret from the Azure key vault: public static async Task<string> GetToken(string authority, string resource, string scope) { var ...
Eutherpy's user avatar
  • 4,581
9 votes
3 answers
31k views

Attempting to retrieve secrets from KeyVault in a C# App Service. Local machine: Visual Studio > Tools > Options > Azure Service Authentication - authenticated Azure account Likely use az ...
Ruskin's user avatar
  • 6,241
7 votes
2 answers
4k views

I am trying to run the script GetAppConfigSettings.ps1 from Microsoft docs help setting up a Key Vault The script contains the following # ************************************************************...
Kirsten's user avatar
  • 18.8k
1 vote
1 answer
2k views

I created sample react login application where user can login by implict oauth2 login via azure ad by refering to this documentation. After successful login I am not able to access keyvault secrets by ...
akhil's user avatar
  • 1,893
23 votes
3 answers
22k views

I have 2 approaches to do the same thing, but Azure has deprecated the one that works, and the other method doesn't work. The approach that works, but is deprecated: I store my PFX in Azure Key ...
Nandun's user avatar
  • 2,072
13 votes
2 answers
18k views

I have a Terraform script that create an Azure Key Vault, imports my SSL certificate (3DES .pfx file with a password), and creates an Application Gateway with a HTTP listener. I'm trying to change ...
wertyq's user avatar
  • 432
88 votes
14 answers
205k views

I am trying to connect my ASP.NET Core application that is targeting .NET framework with Azure Keyvault. On a new Azure VM that supports Identity everything works fine, but this application is hosted ...
Dylan Meivis's user avatar
18 votes
2 answers
25k views

All of the data encryption/decryption examples I have seen with Azure key Vault do the encryption locally and decryption within Azure itself by using the keyVaultClient.DecryptAsync() method. I ...
lahsrah's user avatar
  • 9,213
11 votes
2 answers
10k views

I'm trying to use Key Vault references in my Azure Function (v1) as described here. It works fine for secrets, but not for certificates. The docs don't mention certs at all, so maybe they are simply ...
Thomas Kappler's user avatar
5 votes
1 answer
36k views

I've a azure web service (linux) and azure key vault. i configure two private endpoint , to allow the communication between Azure Key Vault and Azure web app. i set all permissions in key vault's ...
Youssef CH's user avatar
3 votes
3 answers
9k views

I am trying to create a master key vault, which will contain all certificates to authenticate as a certain user. I have 2 service principals => One for my app, One for deployment. The idea is that ...
Identity's user avatar
  • 1,703
2 votes
5 answers
21k views

I am trying to download the certificates that I have on several KeyVaults including their private keys. Through Azure Portal I can do it without issues just going to the KeyVault, selecting the ...
delucaezequiel's user avatar
1 vote
1 answer
1k views

I want to mention at first. I went through the other blogs to find the answer but I could not get the clear answer to my questions that I am looking for. I am getting Key Vault secret from Azure AD at ...
Jashvita's user avatar
  • 671
1 vote
2 answers
4k views

I dont have a great understanding of Key Vault & certificates and struggling with an issue. I am making use of a PFX file to generate a JWT token to call an external webservice. Its working all ...
Tarun Bhatt's user avatar
1 vote
1 answer
1k views

I am seeking some clarity on the best way to integrate Key Vault in ARM deployments within Azure DevOps. For example, deploying an App Service and creating a Managed Service Identity so that it can ...
Tsuchinoko's user avatar
0 votes
1 answer
1k views

I am supporting an Azure Function someone wrote in C# in .NET Core 2.2.4. The function app is connecting to a database using a SQL Server account, and username and password are hardcoded in the ...
os2499's user avatar
  • 43
0 votes
1 answer
2k views

I am building an arm template that deploys a web app, sql database and a key vault. The web app will be deployed with 1- System identity (which will be used to access the keyvault). 2- Connection ...
Mocas's user avatar
  • 1,660
41 votes
4 answers
69k views

A hypothetical web-site currently connects using: public SqlConnection CreateConnection() { DbConnection connection = new SqlConnection(); connection.ConnectionString = GetConnectionString(); ...
Ian Boyd's user avatar
  • 259k
21 votes
1 answer
46k views

In Azure Portal > Key vaults > Secrets, I have secrets with json values (I did not create it). Something like: ... "SubscriptionId": "XXXXXXX", "BaseAuthUri": "https://login....
user1980099's user avatar
13 votes
1 answer
17k views

How can I implement Microsoft's Azure KeyVault in a ASP.NET Framework 4.7.1 WebForms application to override values in web.config with values from KeyVault? I do see references that we need a minimum ...
Bmoe's user avatar
  • 978
11 votes
2 answers
7k views

I want to access the Key Vault from my Service Fabric application via Managed Service Identity (MSI). I have enabled MSI on the virtual machine scale set in the Azure Portal and given it access to my ...
Mikko's user avatar
  • 145
8 votes
1 answer
8k views

We ordered a new code signing certificate and got the private key on a USB based "hardware token" - this is compatible with the new code signing certificate rules, but that limits access to ...
Arve's user avatar
  • 7,524
8 votes
2 answers
6k views

I am using Azure KeyVault to store my database credentials, Now to access it I have hardcoded client id and client secret in service code. How can I avoid this hard coding as its insecure? 1) I don't ...
Chinta Sai Vamshi's user avatar
7 votes
1 answer
11k views

I'm attempting to connect to an Azure Key Vault instance from a .NET 4.7 application running locally under IIS and the debugger (Visual Studio 2022 17.4.4) but am encountering the below exception(s) ...
cognophile's user avatar
6 votes
2 answers
2k views

I would like to create a self signed CA certificate via Azure portal (Azure Key Vault). I am not sure how to set X509 extension Basic Constraints CA:True Some reference link: https://learn.microsoft....
Khanh Van Quoc's user avatar

1
2 3 4 5
8