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.
 
 

35 line
1.3 KiB

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