我正在编写一个 python 脚本来预配和配置 Azure 服务。我想在我的脚本中提供一个新的服务主体,但存在权限问题。如果我在终端中运行此命令(在 之后azure login
),它将创建服务主体:
az ad sp create-for-rbac --name Testapp
我想实现相同的目标,但在我的 python 脚本中,我使用现有的服务主体进行资源配置。我正在拨打的电话如下:
call("az login --service-principal -u '%s' -p '%s' --tenant '%s'" % (args.client_id, args.client_sec, args.tenant_id), shell=True)
call("az ad sp create-for-rbac --name TestServicePrincipal", shell=True)
参数是现有服务主体的凭据。OWNER
如您在此处看到的,此服务主体已属于该订阅:
运行我的 python 脚本时,我可以正常登录(也可以使用这些凭据通过脚本提供一堆其他资源),但是在创建 SP 帐户时会出现权限错误,如您在此处看到的:
synergies git:(master) ✗ python test.py -c 'testcustomer' -l 'eastus' -sid '1234' -cs '1234' -cid '1234' -tid '1234'
[
{
"cloudName": "AzureCloud",
"id": "1234",
"isDefault": true,
"name": "Free Trial",
"state": "Enabled",
"tenantId": "1234",
"user": {
"name": "1234",
"type": "servicePrincipal"
}
}
]
Changing "TestServicePrincipal" to a valid URI of "http://TestServicePrincipal", which is the required format used for service principal names
Insufficient privileges to complete the operation.
任何建议将不胜感激!