Skip to content
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

Fixes #23079: <authentications> must not have a "s" in user-management doc #580

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions user-management/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,15 @@ You can define custom roles as union set of any permissions, ie any rights or ot
Custom roles are defined in the files `/opt/rudder/etc/rudder-users.xml` with the following syntax:

```
<authentications>
<authentication>
<custom-roles>
<role name="read-only-restricted" permissions="node_read,rule_read" />
<role name="read-only-extended" permissions="read-only-restricted,configuration_read" />
<role name="cve-access" permissions="cve_read" />
<role name="auditor" permissions="cve-access, compliance" />
</custom-roles>
...
</authentications>
</authentication>
```

We can see that:
Expand All @@ -162,7 +162,7 @@ If a name in the `roles` list is unknown, it is ignored and grant no additional
User credentials are defined in the same file as custom roles, `/opt/rudder/etc/rudder-users.xml` with the following syntax:

```
<authentications>
<authentication>
<custom-roles>
<role name="read-only-restricted" permissions="node_read,rule_read" />
<role name="read-only-extended" permissions="read-only-restricted,configuration_read" />
Expand All @@ -173,7 +173,7 @@ User credentials are defined in the same file as custom roles, `/opt/rudder/etc/
<user name="user_1" password="..." permissions="node_read,node_write,configuration" />
<user name="user_2" password="..." permissions="auditor" />
...
</authentications>
</authentication>
```

`user` tag can have the following parameters:
Expand Down