11 lines
271 B
Text
11 lines
271 B
Text
![]() |
users:
|
||
|
{% for user in container_authelia_users %}
|
||
|
{{ user.username }}:
|
||
|
displayname: '{{ user.displayname }}'
|
||
|
password: '{{ user.password }}'
|
||
|
email: '{{ user.email }}'
|
||
|
groups:
|
||
|
{% for group in user.groups %}
|
||
|
- '{{ group }}'
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|