Narendra Reddy
Narendra Reddy

Reputation: 23

Access Denied when accessing Azure Key vault from Azure Functions

My requirement is to use the Secret keys which are stored in Azure Key vault, use the application configuration setting of Azure Function to get the Key, [email protected](SecretUri=)

I get AccessToKeyVaultDenied Status in Azure Function, what permission should i provide for the function to fetch keys from vault.

Upvotes: 0

Views: 8730

Answers (1)

unknown
unknown

Reputation: 7473

You need to enable the Get secret permission on this policy.

There is the doc about granting your app access to Key Vault.

Upvotes: 4

Related Questions