【发布时间】:2020-06-04 15:23:24
【问题描述】:
我试图在 azure 中访问 CLI。我想在 Power shell CLI 中执行脚本。但我无法在 azure 中为 PowerShell 创建存储帐户。
【问题讨论】:
标签: azure powershell amazon-iam subscription
我试图在 azure 中访问 CLI。我想在 Power shell CLI 中执行脚本。但我无法在 azure 中为 PowerShell 创建存储帐户。
【问题讨论】:
标签: azure powershell amazon-iam subscription
该错误清楚地表明您没有“cloud-shell-storage-westeurope”资源组的“读取”权限。
请让您的管理员授予您对该资源组的适当权限。
【讨论】:
您收到错误消息,您无权在 存储帐户 的范围内执行操作“Microsoft.Resources/subscriptions/resourcegroups/read”,因为您对 存储帐户 没有相关权限s>存储帐户。
您需要拥有“贡献者” 权限才能创建和管理存储帐户或相关资源。 link中有关 azure RBAC 角色的更多详细信息
编辑:
正如评论中提到的4c74356b41,您需要读取角色和范围应该是资源组。
【讨论】: