本文介绍了Azure Power Shell禁止访问键库错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用ARM模板创建部署Keyvault时,
然后在下一步中使用Powershell访问keyvault并获取禁止错误".
While deployment Keyvault created using ARM template
and in next step accessing keyvault using powershell and getting error Forbidden.
以下是ARM属性为真
"enabledForDeployment":true,
"enabledForTemplateDeployment":true,
"enabledForDeployment": true,
"enabledForTemplateDeployment": true,
Powershell令人惊讶的是
Powershell commad is
Get-AzureKeyVaultSecret -VaultName $ keyVaultName -Name $ KeyName
Get-AzureKeyVaultSecret -VaultName $keyVaultName -Name $KeyName
推荐答案
如果是这样,则必须设置托管身份以从您的功能访问KeyVault.
If so, you will have to setup Managed Identity to access KeyVault from your function.
此博客应该有帮助您可以进行设置.
This blog should help you get setup.
这篇关于Azure Power Shell禁止访问键库错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!