您无权执行操作“Microsoft.Resources/deployments/validate/action”

问题描述 投票:0回答:1

enter image description here

我正在尝试将模板部署到天蓝色登陆区帐户中以采用云采用框架概念,但它不允许我这样做。

我是我的 Active Directory 租户的所有者和管理员...

无法确定此问题的根本原因。

azure azure-active-directory
1个回答
0
投票

最初,我在所有者和全局管理员角色中遇到了相同的错误

enter image description here

要解决该错误,请将租户根范围(“/”)的所有者角色分配给用户:

az role assignment create --scope '/' --role 'Owner' --assignee-object-id UserObjectID --assignee-principal-type User

enter image description here

或者使用以下方法获取登录用户的对象ID并分配角色:

az role assignment create --scope '/' --role 'Owner' --assignee-object-id $(az ad signed-in-user show --query id --output tsv) --assignee-principal-type User

分配角色后,我能够成功解决错误:

enter image description here

或提升访问权限请参阅azure - 用户无权执行操作“Microsoft.Resources/deployments/validate/action - Stack Overflow”,作者:Marilee Turscak - MSFT

© www.soinside.com 2019 - 2024. All rights reserved.