mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +01:00
28 lines
900 B
TOML
28 lines
900 B
TOML
[Testuser]
|
|
# These roles have to be defined in 'bffh.dhall'.
|
|
# Non-existant roles will not crash the server but print a `WARN` level message in the
|
|
# server log in the form "Did not find role somerole/internal while trying to tally".
|
|
roles = ["somerole/internal", "testrole/internal"]
|
|
|
|
# The password will be hashed using argon2id on load time and is not available in plaintext afterwards.
|
|
passwd = "secret"
|
|
|
|
# You can add whatever random data you want.
|
|
# It will get stored in the `kv` field in UserData.
|
|
# This is not used for anything at the moment
|
|
noot = "noot!"
|
|
|
|
[Differentuser]
|
|
# Define them in roles.toml as well
|
|
roles = ["somerole/internal", "testrole/internal"]
|
|
|
|
# If two or more users want to use the same machine at once the higher prio
|
|
# wins
|
|
priority = 0
|
|
|
|
passwd = "secret"
|
|
|
|
# You can add whatever random data you want.
|
|
# It will get stored in the `kv` field in UserData.
|
|
noot = "noot!"
|