docs(config): Document how to allow human operators to change their userpass password

This commit is contained in:
2022-06-07 03:18:29 +02:00
parent aa751b1c4a
commit 0613f58ba4
3 changed files with 95 additions and 0 deletions

View File

@@ -57,3 +57,27 @@ path "sys/mounts"
{
capabilities = ["read"]
}
# Allow creation of groups
path "identity/group"
{
capabilities = ["update"]
}
# Allow renaming of groups
path "identity/group/+/+"
{
capabilities = ["update"]
}
# Allow listing and reading of groups and group attributes
path "identity/groups/+/+"
{
capabilities = ["list", "read"]
}
# Allow listing and reading of entities and entity attributes
path "identity/entity/+/+"
{
capabilities = ["list", "read"]
}