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 containing the instance group. - Select Compute Cloud.
- In the left-hand panel, select
Instance groups. - Select the group you need.
- Go to the
Access bindings tab. - Click Assign roles.
- In the window that opens, select the group, user, or service account you want 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 CLI yet, install and initialize it.
The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID>
command. You can specify a different folder using the --folder-name
or --folder-id
parameter.
-
See the description of the CLI command 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 a list of roles already assigned for the resource in question:
yc compute instance-group list-access-bindings <instance_group_name_or_ID>
-
Assign the role using this 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
: Service account ID.--role
: Role 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 under subject
.
Assigning multiple roles
- In the management console
, select the folder containing the instance group. - Select Compute Cloud.
- In the left-hand panel, select
Instance groups. - Select the group you need.
- Go to the
Access bindings tab. - Click Assign roles.
- In the window that opens, select the group, user, or service account you want 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 CLI yet, install and initialize it.
The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID>
command. 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 access permissions for the resource. All current roles for the resource 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 <instance_group_name_or_ID>
-
See the description of the CLI command 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 you are assigning the role to.
For example, this command will assign roles to multiple users and a single 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 containing the instance group. - 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 in question, click
and select Edit roles. - Click
next to a role to delete it. - Click Save.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID>
command. You can specify a different folder using the --folder-name
or --folder-id
parameter.
-
See the description of the CLI command 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, this command revokes the
viewer
role for the instance group from a user with theajel6l0jcb9s********
ID:yc compute instance-group remove-access-binding test-group \ --role viewer \ --subject userAccount:ajel6l0jcb9s********
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 under subject
.