Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Compute Cloud
    • All guides
      • Creating a GPU cluster
      • Adding a VM to a GPU cluster
      • Updating a GPU cluster
      • Getting information about a GPU cluster
      • Configuring GPU cluster access permissions
      • Deleting a GPU cluster
      • Testing a GPU cluster physical state
      • Running parallel tasks in a GPU cluster
      • Testing InfiniBand throughput
    • Viewing operations with resources
  • Yandex Container Solution
  • Access management
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes

In this article:

  • Assigning a role
  • Assigning multiple roles
  • Revoking a role
  1. Step-by-step guides
  2. GPU clusters
  3. Configuring GPU cluster access permissions

Configuring GPU cluster access permissions

Written by
Yandex Cloud
Updated at May 5, 2025
  • Assigning a role
  • Assigning multiple roles
  • Revoking a role

To grant a user, group, or service account access to a GPU cluster, assign a role for it.

Assigning a roleAssigning a role

Management console
CLI
Terraform
API
  1. In the management console, select the folder containing the GPU cluster.
  2. Select Compute Cloud.
  3. In the left-hand panel, click and select GPU clusters.
  4. Select the GPU cluster you need.
  5. Go to the Access bindings tab.
  6. Click Assign roles.
  7. In the window that opens, select the group, user, or service account you want to grant access to the GPU cluster.
  8. Click Add role and select the required role.
  9. 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.

  1. See the description of the CLI command for assigning a role for a GPU cluster:

    yc compute gpu-cluster add-access-binding --help
    
  2. Get a list of GPU clusters in the default folder:

    yc compute gpu-cluster list
    
  3. View a list of roles already assigned for the resource in question:

    yc compute gpu-cluster list-access-bindings <GPU_cluster_ID>
    
  4. Assign the role using this command:

    • To a user:

      yc compute gpu-cluster add-access-binding <GPU_cluster_ID> \
        --user-account-id <user_ID> \
        --role <role>
      

      Where:

      • --user-account-id: User ID. To assign a role to all authenticated users, use the --all-authenticated-users flag.
      • --role: Role to assign.
    • To a service account:

      yc compute gpu-cluster add-access-binding <GPU_cluster_ID> \
        --service-account-id <service_account_ID> \
        --role <role>
      

      Where:

      • --service-account-id: Service account ID.
      • --role: Role to assign.

With Terraform, you can quickly create a cloud infrastructure in Yandex Cloud and manage it using configuration files. These files store the infrastructure description written in HashiCorp Configuration Language (HCL). If you change the configuration files, Terraform automatically detects which part of your configuration is already deployed, and what should be added or removed.

Terraform is distributed under the Business Source License. The Yandex Cloud provider for Terraform is distributed under the MPL-2.0 license.

For more information about the provider resources, see the documentation on the Terraform website or mirror website.

If you do not have Terraform yet, install it and configure its Yandex Cloud provider.

To assign a role to access a GPU cluster using Terraform:

  1. In the Terraform configuration file, define the parameters of the resources you want to create:

    resource "yandex_compute_gpu_cluster_iam_binding" "sa-access" {
      gpu_cluster_id = "<GPU_cluster_ID>"
      role           = "<role>"
      members        = ["<subject_type>:<subject_ID>"]
    }
    

    Where:

    • gpu_cluster_id: GPU cluster ID.
    • role: Role to assign.
    • members: List of types and IDs of subjects getting the role. Specify it as userAccount:<user_ID> or serviceAccount:<service_account_ID>.

    For more information about the yandex_compute_gpu_cluster_iam_binding resource parameters, see the relevant provider documentation.

  2. Apply the changes:

    1. In the terminal, change to the folder where you edited the configuration file.

    2. Make sure the configuration file is correct using the command:

      terraform validate
      

      If the configuration is correct, the following message is returned:

      Success! The configuration is valid.
      
    3. Run the command:

      terraform plan
      

      The terminal will display a list of resources with parameters. No changes are made at this step. If the configuration contains errors, Terraform will point them out.

    4. Apply the configuration changes:

      terraform apply
      
    5. Confirm the changes: type yes in the terminal and press Enter.

    Terraform will create all the required resources. You can check the updates using the management console or this CLI command:

    yc compute gpu-cluster list-access-bindings <GPU_cluster_ID>
    

To assign a role, use the updateAccessBindings REST API method for the GpuCluster resource or the GpuClusterService/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 rolesAssigning multiple roles

Management console
CLI
Terraform
API
  1. In the management console, select the folder containing the GPU cluster.
  2. Select Compute Cloud.
  3. In the left-hand panel, click and select GPU clusters.
  4. Select the GPU cluster you need.
  5. Go to the Access bindings tab.
  6. Click Assign roles.
  7. In the window that opens, select the group, user, or service account you want to grant access to the GPU cluster.
  8. Click Add role and select the required role.
  9. To add another role, click Add role.
  10. 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.

  1. Make sure the resource has no roles assigned that you would not want to lose:

    yc compute gpu-cluster list-access-bindings <GPU_cluster_ID>
    
  2. See the description of the CLI command for assigning roles for a GPU cluster:

    yc compute gpu-cluster set-access-bindings --help
    
  3. Assign roles:

    yc compute gpu-cluster set-access-bindings <GPU_cluster_ID> \
      --access-binding role=<role>,subject=<subject_type>:<subject_ID> \
      --access-binding role=<role>,subject=<subject_type>:<subject_ID>
    

    Where:

    • --access-binding: Parameters for setting access permissions:

      • role: Role to assign.
      • subject: Type and ID of the subject getting the role.

    For example, this command will assign roles to multiple users and a single service account:

    yc compute gpu-cluster set-access-bindings my-gpu-cluster \
      --access-binding role=editor,subject=userAccount:gfei8n54hmfh********
      --access-binding role=viewer,subject=userAccount:helj89sfj80a********
      --access-binding role=editor,subject=serviceAccount:ajel6l0jcb9s********
    

With Terraform, you can quickly create a cloud infrastructure in Yandex Cloud and manage it using configuration files. These files store the infrastructure description written in HashiCorp Configuration Language (HCL). If you change the configuration files, Terraform automatically detects which part of your configuration is already deployed, and what should be added or removed.

Terraform is distributed under the Business Source License. The Yandex Cloud provider for Terraform is distributed under the MPL-2.0 license.

For more information about the provider resources, see the documentation on the Terraform website or mirror website.

If you do not have Terraform yet, install it and configure its Yandex Cloud provider.

To assign multiple roles for a file storage using Terraform:

  1. In the Terraform configuration file, define the parameters of the resources you want to create:

    resource "yandex_compute_gpu_cluster_iam_binding" "role1" {
      gpu_cluster_id = "<GPU_cluster_ID>"
      role           = "<role_1>"
      members        = ["<subject_type>:<subject_ID>"]
    }
    
    resource "yandex_compute_gpu_cluster_iam_binding" "role2" {
      gpu_cluster_id = "<GPU_cluster_ID>"
      role           = "<role_2>"
      members        = ["<subject_type>:<subject_ID>"]
    }
    

    Where:

    • gpu_cluster_id: GPU cluster ID.
    • role: Role to assign.
    • members: List of types and IDs of subjects getting the role. Specify it as userAccount:<user_ID> or serviceAccount:<service_account_ID>.

    For more information about the yandex_compute_gpu_cluster_iam_binding resource parameters, see the relevant provider documentation.

  2. Apply the changes:

    1. In the terminal, change to the folder where you edited the configuration file.

    2. Make sure the configuration file is correct using the command:

      terraform validate
      

      If the configuration is correct, the following message is returned:

      Success! The configuration is valid.
      
    3. Run the command:

      terraform plan
      

      The terminal will display a list of resources with parameters. No changes are made at this step. If the configuration contains errors, Terraform will point them out.

    4. Apply the configuration changes:

      terraform apply
      
    5. Confirm the changes: type yes in the terminal and press Enter.

    Terraform will create all the required resources. You can check the updates using the management console or this CLI command:

    yc compute gpu-cluster list-access-bindings <GPU_cluster_ID>
    

To assign roles for a GPU cluster, use the setAccessBindings REST API method for the GpuCluster resource or the GpuClusterService/SetAccessBindings gRPC API call.

Alert

The set-access-binding method and the GpuClusterService/SetAccessBindings call completely overwrite access permissions for the resource. All current roles for the resource will be deleted.

Revoking a roleRevoking a role

Management console
CLI
Terraform
API
  1. In the management console, select the folder containing the GPU cluster.
  2. Select Compute Cloud.
  3. In the left-hand panel, click and select GPU clusters.
  4. Select the GPU cluster you need.
  5. Go to the Access bindings tab.
  6. In the line with the user in question, click and select Edit roles.
  7. Next to the role, click .
  8. 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.

  1. See the description of the CLI command for revoking a role for a GPU cluster:

    yc compute gpu-cluster remove-access-binding --help
    
  2. View the roles and assignees for the resource:

    yc compute gpu-cluster list-access-bindings <GPU_cluster_ID>
    
  3. To revoke access permissions, run this command:

    yc compute gpu-cluster remove-access-binding <GPU_cluster_ID> \
      --role=<role> \
      --subject=<subject_type>:<subject_ID> \
    

    Where:

    • --role: ID of the role to revoke.
    • --subject: Type and ID of the subject to revoke the role from.

    For example, this command revokes the viewer role for the GPU cluster from a user with the ajel6l0jcb9s******** ID:

    yc compute gpu-cluster remove-access-binding my-gpu-cluster \
      --role viewer \
      --subject userAccount:ajel6l0jcb9s********
    

With Terraform, you can quickly create a cloud infrastructure in Yandex Cloud and manage it using configuration files. These files store the infrastructure description written in HashiCorp Configuration Language (HCL). If you change the configuration files, Terraform automatically detects which part of your configuration is already deployed, and what should be added or removed.

Terraform is distributed under the Business Source License. The Yandex Cloud provider for Terraform is distributed under the MPL-2.0 license.

For more information about the provider resources, see the documentation on the Terraform website or mirror website.

If you do not have Terraform yet, install it and configure its Yandex Cloud provider.

To revoke a role assigned for a GPU cluster using Terraform:

  1. Open the Terraform configuration file and delete the section specifying the role:

    resource "yandex_compute_gpu_cluster_iam_binding" "sa-access" {
      gpu_cluster_id = "<GPU_cluster_ID>"
      role           = "<role>"
      members        = ["<subject_type>:<subject_ID>"]
    }
    
  2. Apply the changes:

    1. In the terminal, change to the folder where you edited the configuration file.

    2. Make sure the configuration file is correct using the command:

      terraform validate
      

      If the configuration is correct, the following message is returned:

      Success! The configuration is valid.
      
    3. Run the command:

      terraform plan
      

      The terminal will display a list of resources with parameters. No changes are made at this step. If the configuration contains errors, Terraform will point them out.

    4. Apply the configuration changes:

      terraform apply
      
    5. Confirm the changes: type yes in the terminal and press Enter.

    You can check the updates using the management console or this CLI command:

    yc compute gpu-cluster list-access-bindings <GPU_cluster_ID>
    

To revoke a role, use the updateAccessBindings REST API method for the GpuCluster resource or the GpuClusterService/UpdateAccessBindings gRPC API call. In the request body, set the action property to REMOVE and specify the user type and ID under subject.

Was the article helpful?

Previous
Getting information about a GPU cluster
Next
Deleting a GPU cluster
Yandex project
© 2025 Yandex.Cloud LLC