Managing log group access permissions
You can view the roles assigned for a log group, revoke them, or assign new ones.
Note
The default log group inherits the roles assigned for the folder it resides in. To update the log group access permissions, assign or revoke the roles for the folder.
Viewing roles assigned for a log group
If you do not have the Yandex Cloud CLI installed yet, install and initialize it.
By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID>
command. You can also set a different folder for any specific command 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 group
Run the following command to assign a role for a custom log group:
-
To a user:
yc logging group add-access-binding \ --name <log_group_name> \ --user-account-id <user_ID> \ --role <role>
Result:
done (1s)
-
To a service account:
yc logging group add-access-binding \ --name <log_group_name> \ --service-account-id <service_account_ID> \ --role <role>
Result:
done (1s)
-
To all authenticated 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 group
Run this command to revoke a role assigned for a custom log group:
-
From a user:
yc logging group remove-access-binding \ --name <log_group_name> \ --user-account-id <user_ID> \ --role <role>
Result:
done (1s)
-
From a service account:
yc logging group remove-access-binding \ --name <log_group_name> \ --service-account-id <service_account_ID> \ --role <role>
Result:
done (1s)
-
From all authenticated 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.