使用 nodejs 将 Azure 用户添加到资源组
Add Azure user to resource group with nodejs
使用 Node.js SDK,我创建了一个用户和一个资源组。我现在如何将用户作为所有者分配给资源组?
你可以参考这个example。
authzClient.roleAssignments.create(scope, assignmentGuid, roleCreateParams, function (err, roleAssignment, req, res) {
if (err) {
console.log('\nError occured while creating the roleAssignment: \n' + util.inspect(err, { depth: null }));
return;
}
根据您的需要,您需要示例。
Owner
角色 ID 为 8e3af657-a8ff-443c-a75c-2fe8c4bcb635
。
scope
应该是这样的/subscriptions/{subscription-id}/resourceGroups/myresourcegroup1
.
将应用程序 ID 替换为您的用户对象 ID。
此外,您可以使用 Azure rest API 来执行此操作,请参阅此 link。
使用 Node.js SDK,我创建了一个用户和一个资源组。我现在如何将用户作为所有者分配给资源组?
你可以参考这个example。
authzClient.roleAssignments.create(scope, assignmentGuid, roleCreateParams, function (err, roleAssignment, req, res) {
if (err) {
console.log('\nError occured while creating the roleAssignment: \n' + util.inspect(err, { depth: null }));
return;
}
根据您的需要,您需要示例。
Owner
角色 ID 为 8e3af657-a8ff-443c-a75c-2fe8c4bcb635
。
scope
应该是这样的/subscriptions/{subscription-id}/resourceGroups/myresourcegroup1
.
将应用程序 ID 替换为您的用户对象 ID。
此外,您可以使用 Azure rest API 来执行此操作,请参阅此 link。