Configuring instance group access permissions
To grant a user, group, or service account access to an instance group, assign a role for it.
Assigning a role
- In the management console
, select the folder where the instance group is located. - Select Compute Cloud.
- In the left-hand panel, select
Instance groups. - Select the group you need.
- Go to the
Access bindings tab. - Click Assign bindings.
- In the window that opens, select the group, user, or service account to grant access to the instance group.
- Click
Add role and select the required roles. - Click Save.
If you do not have the Yandex Cloud command line interface yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameter.
-
See the CLI command description for assigning a role for an instance group:
yc compute instance-group add-access-binding --help
-
Get a list of instance groups in the default folder:
yc compute instance-group list
Result:
+----------------------+-----------------------+------+ | ID | NAME | SIZE | +----------------------+-----------------------+------+ | amc65sbgfqeq******** | first-instance-group | 2 | +----------------------+-----------------------+------+
-
View the list of roles already assigned for the resource:
yc compute instance-group list-access-bindings <instance_group_name_or_ID>
-
Assign the role using the command:
-
To a user:
yc compute instance-group add-access-binding <instance_group_name_or_ID> \ --user-account-id <user_ID> \ --role <role>
Where:
-
To a service account:
yc compute instance-group add-access-binding <instance_group_name_or_ID> \ --service-account-id <service_account_ID> \ --role <role>
Where:
--service-account-id
is the service account ID.--role
: Role you want to assign.
-
Use the updateAccessBindings REST API method for the InstanceGroup resource or the InstanceGroupService/UpdateAccessBindings gRPC API call. In the request body, set the action
property to ADD
and specify the user type and ID in the subject
property.
Assigning multiple roles
- In the management console
, select the folder where the instance group is located. - Select Compute Cloud.
- In the left-hand panel, select
Instance groups. - Select the group you need.
- Go to the
Access bindings tab. - Click Assign bindings.
- In the window that opens, select the group, user, or service account to grant access to the instance group.
- Click
Add role and select the required roles. - To add another role, click Add role.
- Click Save.
If you do not have the Yandex Cloud command line interface yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameter.
You can assign multiple roles using the set-access-bindings
command.
Alert
The set-access-bindings
command completely rewrites the access permissions for the resource. All current resource roles will be deleted.
-
Make sure the resource has no roles assigned that you would not want to lose:
yc compute instance-group list-access-bindings <VM_group_name_or_ID>
-
See the CLI command description for assigning roles for an instance group:
yc compute instance-group set-access-bindings --help
-
Assign roles:
yc compute instance-group set-access-bindings <instance_group_name_or_ID> \ --access-binding role=<role>,subject=<subject_type>:<subject_ID>
Where:
-
--access-binding
: Role to assign:role
: ID of the role to assign.subject
: Type and ID of the subject getting the role.
For example, assign roles to multiple users and a service account:
yc compute instance-group set-access-bindings test-group \ --access-binding role=editor,subject=userAccount:gfei8n54hmfh******** \ --access-binding role=viewer,subject=userAccount:helj89sfj80a******** \ --access-binding role=editor,subject=serviceAccount:ajel6l0jcb9s********
-
Use the setAccessBindings REST API method for the InstanceGroup resource or the InstanceGroupService/SetAccessBindings gRPC API call.
Revoking a role
- In the management console
, select the folder where the instance group is located. - Select Compute Cloud.
- In the left-hand panel, select
Instance groups. - Select the group you need.
- Go to the
Access bindings tab. - In the line with the user you need, click
and select Edit roles. - Click
next to a role to delete it. - Click Save.
If you do not have the Yandex Cloud command line interface yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameter.
-
See the CLI command description for revoking a role for an instance group:
yc compute instance-group remove-access-binding --help
-
View the roles and assignees for the resource:
yc compute instance-group list-access-bindings <instance_group_name_or_ID>
-
To revoke access permissions, run this command:
yc compute instance-group remove-access-binding <instance_group_name_or_ID> \ --role <role_ID> \ --subject <subject_type>:<subject_ID>
Where:
--role
: ID of the role to revoke.--subject
: Subject to revoke the role from.
For example, to revoke the
viewer
role for an instance group from a user with theajel6l0jcb9s********
ID:yc compute instance-group remove-access-binding test-group \ --role viewer \ --subject userAccount:ajel6l0jcb9s********
To revoke instance roles, use the updateAccessBindings REST API method for the InstanceGroup resource or the InstanceGroupService/UpdateAccessBindings gRPC API call. In the request body, set the action
property to REMOVE
and specify the user type and ID in the subject
property.