我正在尝试按照本指南操作,但步骤没有成功az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/${SUBSCRIPTION_ID}"
。它给出了以下错误。我尝试重新登录,但也没有成功。我还输入了登录时的订阅 ID。
有什么建议吗?
Role assignment creation failed.
role assignment response headers: {'Content-Length': '102',
'Strict-Transport-Security': 'max-age=31536000;
includeSubDomains', 'x-ms-failure-cause': 'gateway', 'X-
Content-Type-Options': 'nosniff', 'x-ms-request-id': 'cac21e0b-
021d-416f-a4a0-9f539fdf3be4', 'Expires': '-1', 'x-ms-correlation-
request-id': 'cac21e0b-021d-416f-a4a0-9f539fdf3be4', 'Pragma':
'no-cache', 'Cache-Control': 'no-cache', 'Date': 'Thu, 14 Jun 2018
11:57:42 GMT', 'x-ms-routing-request-id':
'NORTHCENTRALUS:20180614T115743Z:cac21e0b-021d-416f-
a4a0-9f539fdf3be4', 'Content-Type': 'application/json;
charset=utf-8'}
找不到订阅‘提供商’。
答案1
从外观上看,您没有为任何东西分配角色,并且语法也可能是错误的。
az ad sp create-for-rbac -n "MyApp" --role contributor --scopes /subscriptions/{SubID}
希望这可以帮助。