Azure

Azure cli 未創建角色

  • June 14, 2018

我正在嘗試遵循本指南,但在這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'}

找不到訂閱“提供者”。

從外觀上看,您沒有為任何內容分配角色,並且語法也可能是錯誤的。

az ad sp create-for-rbac -n "MyApp" --role contributor --scopes /subscriptions/{SubID}

希望這可以幫助。

引用自:https://serverfault.com/questions/916658