3,065 questions
-1
votes
0
answers
37
views
Error trying to get access token for system-assigned managed identity at particular instance else working fine
Encountering an issue where the access token is not generated at the intended instance when using a Linux VM with system-assigned managed identity to retrieve secrets from Azure Key Vault. This issue ...
0
votes
1
answer
58
views
Access Azure keyvault secret from AZDO pipeline step
I have the following Azure Devops pipeline step to retrieve a secret from a KV
steps:
- task: AzureKeyVault@2
displayName: Fetch Azure Key Vault Secrets
inputs:
azureSubscription: ${{ ...
0
votes
0
answers
62
views
How to reference entries in the secret scope when creating a unity catalog connection?
I am creating a unity catalog connection to an oracle database using terraform for my databricks unity catalog hosted on azure.
I try to create the connection, the creation works fine, but once i try ...
0
votes
1
answer
53
views
PyPI azure-identity - ManagedIdentityCredential authentication unavailable, no response from the IMDS endpoint
We're trying to use Python (azure-identity & azure-keyvault-secrets) to get secrets from azure keyvault from a VMSS instance, but keep failing. We're using a user-assigned managed identity ...
0
votes
1
answer
69
views
IConfiguration and Azure KeyVault
I have a .NET 8 application where I read in values from an Azure Keyvault and then bind to configuration:
builder.Configuration.AddAzureKeyVault(new Uri($"https://mykeyvault.vault.azure.net/"...
0
votes
1
answer
100
views
Can't create an https listener in azure gateway with an azure app service certificate
Scenario and desired result: I have an azure gateway with a WAF associated and i'd like to include HTTPS calls. To do so, I've asked for a domain that has been registered and associated to an azure ...
0
votes
0
answers
96
views
Uable to get get Azure Keyvault secrets from a C# dotnet-isolated function app
I am trying to get a secret from a Azure Keyvault in a C# Azure dotnet-isolated function. Getting the secret works from the command line so my account is able to.
az keyvault secret show --vault-name ...
1
vote
1
answer
86
views
How to escape dot in .NET configuration via Azure Key Vault
I need to override application configuration via Key Vault:
{
"Serilog": {
"MinimumLevel": {
"Override": {
"Microsoft.EntityFrameworkCore....
0
votes
1
answer
523
views
Problem setting Azure Application Gateway to use certificate held in Azure Key Vault
I'm trying to update an Azure Application Gateway so that it uses a certificate held in an Azure Key Vault rather than uploaded directly into the listener.
The certificate held in the Key Vault was ...
0
votes
1
answer
181
views
Web application and resolve settings from keyvault
I've some .NET 9 applications that use appsettings.json to load settings, but some of them contain sensitive data, and I would like to resolve them as I do for Azure functions via @Microsoft.KeyVault ...
0
votes
1
answer
156
views
Proxy Bypass Issue When Hosting Service Under Local System Account
I created a very basic application responsible for fetching Key Vault secrets. When hosting this service under the "Local System" account, it bypasses the proxy and directly tries to access ...
-1
votes
1
answer
179
views
How to use a secret saved in keyvault in a web activity in ADF without exposing the secret in pipeline run logs in ADF
I need to create an ADF pipeline to restart a databricks cluster. I am trying to do this using web activity by using token authentication. Token is saved in keyvault but how to fetch the token from ...
0
votes
1
answer
54
views
Azure - Python client for listing key vaults
I found 4 python libraries for working with key vaults:
admin
keys
certs
secrets
but I am missing an API in python to list all vaults. Samples and tests for the aforementioned libs always provide an ...
3
votes
1
answer
300
views
Create Azure KeyVault backed Databricks secret scope in CLI
I am trying to create an Azure KeyVault-backed secret scope within Databricks.
I can create the AKV-backed secret scope in the UI no bother, however, I want to create it in the CLI as part of a CI/CD ...
0
votes
1
answer
266
views
Azure Storage Account sFTP configuration with "Use existing key stored in Azure Key Vault"
While configuring SFTP on an Azure Storage Account, I selected the “Use existing key stored in Azure Key Vault” option to authenticate a local user. However, the dropdown list for selecting the key ...
0
votes
3
answers
241
views
In Azure pipelines, how to pass keyvault secrets to a Visual Studio application?
Following help from a recent question, I now have a pipeline reading in keyvault secrets and correctly storing the values in a file.
This is the yaml file:
variables:
vmImageUb: 'ubuntu-latest'
...
0
votes
1
answer
510
views
How can I access an azure key vault certificate from a web app or an app service?
I am trying to use RBAC to sync an SSL certificate from an key vault into a web app. I have given the web app the Key Vault Certificate User role but I am still getting this error:
Failed to import ...
0
votes
1
answer
226
views
Azure function cannot access Keyvault in Azure (Forbidden, not authorized, not trusted), locally works
I have an Azure function fetching secrets from a KeyVault. Both in same resoucegroup, same region.
For testing purposes, public access is allowed for whitelisted IPs.
Testing locally works with ...
0
votes
1
answer
132
views
Assigning web app with keyvault reference does not work via BiCep
When deploying our web app application, we knew that we wanted to import certificates to web app from Key vault. However, we've managed to get a lot of issues along the way and wanted to see if there ...
0
votes
1
answer
206
views
Updating access token for the Data bricks linked service
Have a Data bricks linked service with Authentication type as "Access Token" but Key Vault is used.
Linked Service Settings (https://i.sstatic.net/gYxb0HrI.png)
and while validating the LS, ...
0
votes
1
answer
412
views
Spring-Boot using key vault by manage-identity
I've configured a Managed Identity to use a key vault on my Spring-Boot application inside a VM:
pom.xml
...
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>...
0
votes
1
answer
212
views
Azure Key Vault Not Accessible before Build() in .NET 6 Container App
Setup
I'm running a .NET 6 web app inside an Azure Container App and accessing Azure Key Vault for secrets and connection strings.
Dependency Injection works fine for injecting my custom Key Vault ...
0
votes
0
answers
48
views
Scaffold-DbContext using Azure Key vault
I am trying to use Scaffold-DbContext for an Azure SQL database.
I tried these 2 methods and the errors
Scaffold-DbContext 'Server=tcp:testdb-sqldb-dev.database.windows.net,1433;Initial Catalog=dbname;...
0
votes
0
answers
101
views
Azure Data Factory: Parameterization and Keyvault within another linked service
In Azure Data Factory I have a Key Vault which is used by several other linked services.
All of the linked services have been parameterized, except for the Azure Key vault URL within other linked ...
0
votes
2
answers
503
views
Service Connection permissions error when trying to access Azure Key vault secrets from within an Azure DevOps pipeline with the task AzureKeyVault@2
In my devops pipeline, I have this task:
- task: AzureKeyVault@2
displayName: 'Fetch secrets from KeyVault used in Deploy stage'
inputs:
azureSubscription: '$(AzureServiceConnectionName)'
...