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 Cloud Logging
  • Getting started
    • All guides
    • Adding records
    • Reading records
    • Managing rights to access log groups
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • FAQ

In this article:

  • Viewing roles assigned for a log group
  • Assigning roles for a log group
  • Revoking roles assigned for a log group
  1. Step-by-step guides
  2. Managing rights to access log groups

Managing rights to access log groups

Written by
Yandex Cloud
Updated at May 5, 2025
  • Viewing roles assigned for a log group
  • Assigning roles for a log group
  • Revoking roles assigned for a log group

You can see what roles are assigned for a log group, revoke them, or assign new roles.

Note

The default log group inherits the roles assigned for the folder that it is located in. To update its access rights, assign or revoke folder roles.

Viewing roles assigned for a log groupViewing roles assigned for a log group

CLI
API

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.

To view the roles assigned for a custom log group, run this command:

yc logging group list-access-bindings --name=<log_group_name>

Result:

+---------+--------------+-----------------------+
| ROLE ID | SUBJECT TYPE |      SUBJECT ID       |
+---------+--------------+-----------------------+
| editor  | system       | allAuthenticatedUsers |
+---------+--------------+-----------------------+

To view the roles assigned for a custom log group, use the listAccessBindings REST API method for the LogGroup resource or the LogGroupService/ListAccessBindings gRPC API call.

Assigning roles for a log groupAssigning roles for a log group

CLI
API

To assign a role to a custom log group, run this command:

  • User:

    yc logging group add-access-binding \
      --name <log_group_name> \
      --user-account-id <user_ID> \
      --role <role>
    

    Result:

    done (1s)
    
  • Service account:

    yc logging group add-access-binding \
      --name <log_group_name> \
      --service-account-id <service_account_ID> \
      --role <role>
    

    Result:

    done (1s)
    
  • All authorized users (the All authenticated users public group):

    yc logging group add-access-binding \
      --name <log_group_name> \
      --all-authenticated-users \
      --role <role>
    

    Result:

    done (1s)
    

To assign roles for a custom log group, use the setAccessBindings REST API method for the LogGroup resource or the LogGroupService/SetAccessBindings gRPC API call.

Revoking roles assigned for a log groupRevoking roles assigned for a log group

CLI
API

To revoke a role assigned for a custom log group, run the command:

  • User:

    yc logging group remove-access-binding \
      --name <log_group_name> \
      --user-account-id <user_ID> \
      --role <role>
    

    Result:

    done (1s)
    
  • Service account:

    yc logging group remove-access-binding \
      --name <log_group_name> \
      --service-account-id <service_account_ID> \
      --role <role>
    

    Result:

    done (1s)
    
  • All authorized users (the All authenticated users public group):

    yc logging group remove-access-binding \
      --name <log_group_name> \
      --all-authenticated-users \
      --role <role>
    

    Result:

    done (1s)
    

To revoke roles assigned to a custom log group, use the updateAccessBindings REST API method for the LogGroup resource or the LogGroupService/UpdateAccessBindings gRPC API call.

Was the article helpful?

Previous
Reading records
Next
Getting a list of log groups
Yandex project
© 2025 Yandex.Cloud LLC