skip to Main Content

Azure – ARM Template – Deployment slot keyvault permissions

Trying to assign permissions for the app service deployment slot to keyvault and having a hell of a time getting it { "tenantId": "[subscription().tenantId]", "objectId": "[resourceId('Microsoft.Web/sites/slots', parameters('azureAppService').webSiteName, 'DEV').identity.principalId]", "permissions": { "secrets": [ "Get" ] } } Not sure what I'm…

VIEW QUESTION

How to set up azure keyvault for spring boot app?

There was some dependency incompatibility occurring because we were using an older version of azure keyvault (azure-keyvault-secrets-spring-boot-starter 2.2.1) but it got updated and we are upgrading it to azure-spring-boot-starter-keyvault-secrets 4.0.0. Now the keyvault isn't being connected maybe because the application.yml…

VIEW QUESTION

Azure – Unable to access Key Vault resource due to error message: "Number of groups to be checked cannot be more than 20."

When trying to view Key Vault Secrets or Keys, the Azure portal UI makes the following calls: Retrive the list of access policies: POST https://management.azure.com/batch?api-version=2020-06-01 Pass the list of access policies to Graph API checkMemberGroups: POST https://graph.windows.net/myorganization/users/..../checkMemberGroups?api-version=1.6 Which returns the…

VIEW QUESTION

Azure KeyVault Terraform cycle

I am trying to write a Terraform descriptor for integration Azure Functions, KeyVault and CosmosDB. On one hand I need Azure Functions identity id to create KeyVault access policy. On the other I need KeyVault's CosmosDB key reference to put…

VIEW QUESTION
Back To Top
Search