Getting Secrets From Azure (C#) – Asp.net
I’m trying to do a personal project and I want to use either Azure Key Vault or the appsettings that the Azure Web Apps provide by default. But I have only one concern. I guess if I want to use…
I’m trying to do a personal project and I want to use either Azure Key Vault or the appsettings that the Azure Web Apps provide by default. But I have only one concern. I guess if I want to use…
I have a docker container python app deployed on a kubernetes cluster on Azure (I also tried on a container app). I'm trying to connect this app to Azure key vault to fetch some secrets. I created a managed identity…
I have been tasked to move the connection from an Azure function to Key Vault instead of storing it as a Function AppSetting. The syntax of the Azure function is as follows: AuthType=ClientSecret;ClientId=<clientId>;ClientSecret=<ClientSecret>;Url=<Url> I've created the Key Vault, key and…
I am trying to build a pipeline which is capable of deploying environments for multiple customers. I have the following structure Azure Vault with secrets names in this form: customerName-customerEnvironmentType-secretName release pipeline with these steps. It is a multi configuration…
I am trying to synchronize the variables that I have azure Library with Keyvault, for this I have a SPN created added as service connector. When I put the Keyvault and the service connector to synchronize I get a command…
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 right. Now I…
How to backup and restore the Azure Key vault that includes keys, secrets & cert along with RBAC?
I have to use raw json in my post query to Azure Key Vault. Which I've done like so: { "grant_type":"client_credentials" } I get a 400 error complaining that the body does not have 'grant_type' How can I get Azure…
I'm used to use GCP's secret manager. There, we can create a secret and give a specific READ permission for one specific service account. I mean, let's say we create a secret ABC and a service account "getsecretaccount", I can…
I need to add roles for my app service so that it can access the secret in Azure key-vault where Can I find the scope for the secret? resource "azurerm_role_assignment" "GetKey" { scope = ????????? # how can I find…