Skip to content

Commit f58cd31

Browse files
authored
Merge pull request #3577 from mjudeikis/mjudeikis/fix.docs
Fix required groups documentation
2 parents 75d61f8 + 485d8a9 commit f58cd31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/concepts/authorization/authorizers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ The following authorizers work together to implement RBAC in kcp:
7777
#### Required Groups Authorizer
7878

7979
A `authorization.kcp.io/required-groups` annotation can be added to a LogicalCluster
80-
to specify additional groups that are required to access a workspace for a user to be member of.
81-
The syntax is a disjunction (separator `,`) of conjunctions (separator `;`).
80+
to specify which groups a user must be a member of to access the workspace.
81+
The syntax uses semicolons (`;`) to separate OR conditions and commas (`,`) to separate AND conditions within each group set.
8282

83-
For example, `<group1>;<group2>,<group3>` means that a user must be member of `<group1>` AND `<group2>`, OR of `<group3>`.
83+
For example, `<group1>,<group2>;<group3>` means that a user must be a member of both `<group1>` AND `<group2>`, OR be a member of `<group3>`.
8484

8585
The annotation is copied onto sub-workspaces during workspace creation, but is then not updated
8686
automatically if it's changed.

0 commit comments

Comments
 (0)