Skip to content

Added the role concept to the glossary #14624

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ydb/docs/en/core/concepts/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,12 @@ A **[user](../security/authorization.md#user)** is an individual utilizing {{ yd

A **[group](../security/authorization.md#group)** or **access group** is a named collection of [users](#access-user) with identical [access rights](#access-right) to certain [access objects](#access-object).

### Role {#access-role}

A **role** is a named collection of [access rights](#access-right) that can be granted to [users](#access-user) or [groups](#access-group).

Roles in {{ ydb-short-name }} are implemented as [groups](#access-group) that are created during the initial cluster deployment and granted a set of [access rights](#access-right) on the root of the cluster scheme.

### SID {#access-sid}

**SID** (**Security Identifier**) is a string in the format `<login>[@<subsystem>]`, identifying an [access subject](../concepts/glossary.md#access-subject) in [access control lists](#access-control-list).
Expand Down
6 changes: 6 additions & 0 deletions ydb/docs/ru/core/concepts/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,12 @@

Группа идентифицируется [SID](#access-sid).

### Роль {#access-role}

Роль — это именованное множество [прав доступа](#access-right), используемое для назначения [пользователям](#access-user) или [группам](#access-group) пользователей.

Роли в {{ ydb-short-name }} реализованы с помощью [групп](#access-group), которые создаются при первоначальном развёртывании кластера, и которым назначается определённый [список прав](#access-right) на корне схемы кластера. Подробнее о ролях читайте в статье [{#T}](../security/builtin-security.md).

### SID {#access-sid}

**SID** или **security identifier** — строка вида `<name>` или `<name>@<auth-domain>`, идентифицирующая [субъект доступа](../concepts/glossary.md#access-subject). Используется при [аутентификации](../security/authentication.md), [авторизации](../security/authorization.md), в [списках прав](#access-control-list) и в [списках уровней доступа](#access-level-list).
Expand Down
2 changes: 1 addition & 1 deletion ydb/docs/ru/core/security/builtin-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Встроенная настройка безопасности добавляет в систему суперпользователя, а также реализует набор ролей безопасности для удобного управления пользователями.

## Роли
## Роли {#roles}

Роль | Описание
--- | ---
Expand Down
Loading