Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

40 lines
1.4 KiB

  1. # SPDX-FileCopyrightText: 2022 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2024 Suguru Hirahara
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. # matrix_user_creator_users holds a list of users that should be created on the Matrix homeserver.
  7. #
  8. # Removing a user from this list will not automatically delete/disable the Matrix user on the homeserver.
  9. #
  10. # As the `initial_password` / `initial_type` field names indicate, these are just initial values.
  11. # Changing the password or type values subsequently will not update the already existing user's details.
  12. #
  13. # The known user types are: 'admin', 'user', 'bot', 'support'.
  14. # These are inspired by Synapse's user types.
  15. # 'admin' and 'user' types are generally recognized across homeservers.
  16. # Other homeservers may not support 'bot' and 'support'. Such homeservers will fall back to whatever types they do support.
  17. #
  18. # Example:
  19. # matrix_user_creator_users:
  20. # - username: root
  21. # initial_password: some-password
  22. # initial_type: admin
  23. #
  24. # - username: alice
  25. # initial_password: some-password
  26. # initial_type: user
  27. #
  28. # - username: bot.matrix-reminder-bot
  29. # initial_password: some-password
  30. # initial_type: bot
  31. #
  32. # - username: bot.matrix-reminder-bot
  33. # initial_password: some-password
  34. # initial_type: support
  35. #
  36. # To create you own users, use the `matrix_user_creator_users_additional` variable.
  37. matrix_user_creator_users: "{{ matrix_user_creator_users_auto + matrix_user_creator_users_additional }}"