以下是场景: 我们在资源组“ A”中有一个用户分配的受管理身份,我们正在创建一个新的资源组“ B”,并希望将资源组A中的MSI添加为B。
我们如何通过Azure CLI实现这一目标?
答案 0 :(得分:0)
您可以使用az identity list -g '<resource group name>'
来获取id
,然后使用下面的命令,id
表示用户分配的受管身份资源ID,对我而言很好。
az resource move --destination-group '<destination resource group>' --ids '<User Assigned Managed Identity resource id >'
更新:
az role assignment create --resource-group '<resourcegroupname>' --role 'Contributor' --assignee '<service principal objectId>'
检查门户:
此外,您可以在Azure Active Directory->企业应用程序(所有应用程序)中找到ObjectId,只需搜索用户分配的托管身份名称即可。
答案 1 :(得分:0)