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.
 
 

89 lines
5.0 KiB

  1. ---
  2. # A moderation tool for Matrix
  3. # Project source code URL: https://github.com/matrix-org/mjolnir
  4. matrix_bot_mjolnir_enabled: true
  5. # renovate: datasource=docker depName=matrixdotorg/mjolnir
  6. matrix_bot_mjolnir_version: "v1.6.5"
  7. matrix_bot_mjolnir_container_image_self_build: false
  8. matrix_bot_mjolnir_container_image_self_build_repo: "https://github.com/matrix-org/mjolnir.git"
  9. matrix_bot_mjolnir_docker_image: "{{ matrix_bot_mjolnir_docker_image_name_prefix }}matrixdotorg/mjolnir:{{ matrix_bot_mjolnir_version }}"
  10. matrix_bot_mjolnir_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_mjolnir_container_image_self_build else matrix_container_global_registry_prefix }}"
  11. matrix_bot_mjolnir_docker_image_force_pull: "{{ matrix_bot_mjolnir_docker_image.endswith(':latest') }}"
  12. matrix_bot_mjolnir_base_path: "{{ matrix_base_data_path }}/mjolnir"
  13. matrix_bot_mjolnir_config_path: "{{ matrix_bot_mjolnir_base_path }}/config"
  14. matrix_bot_mjolnir_data_path: "{{ matrix_bot_mjolnir_base_path }}/data"
  15. matrix_bot_mjolnir_docker_src_files_path: "{{ matrix_bot_mjolnir_base_path }}/docker-src"
  16. matrix_bot_mjolnir_container_network: ""
  17. matrix_bot_mjolnir_container_additional_networks: "{{ matrix_bot_mjolnir_container_additional_networks_auto + matrix_bot_mjolnir_container_additional_networks_custom }}"
  18. matrix_bot_mjolnir_container_additional_networks_auto: []
  19. matrix_bot_mjolnir_container_additional_networks_custom: []
  20. # A list of extra arguments to pass to the container
  21. matrix_bot_mjolnir_container_extra_arguments: []
  22. # List of systemd services that matrix-bot-mjolnir.service depends on
  23. matrix_bot_mjolnir_systemd_required_services_list: "{{ matrix_bot_mjolnir_systemd_required_services_list_default + matrix_bot_mjolnir_systemd_required_services_list_auto + matrix_bot_mjolnir_systemd_required_services_list_custom }}"
  24. matrix_bot_mjolnir_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  25. matrix_bot_mjolnir_systemd_required_services_list_auto: []
  26. matrix_bot_mjolnir_systemd_required_services_list_custom: []
  27. # List of systemd services that matrix-bot-mjolnir.service wants
  28. matrix_bot_mjolnir_systemd_wanted_services_list: []
  29. # Whether Mjolnir should talk to the homeserver through Pantalaimon
  30. # If true, then other variables must be provided including pointing
  31. # `matrix_bot_mjolnir_homeserver_url` to the Pantalaimon URL.
  32. matrix_bot_mjolnir_pantalaimon_use: false
  33. # The access token for the bot user. Required when NOT using Pantalaimon.
  34. # (Otherwise provide `matrix_bot_mjolnir_pantalaimon_username` and `matrix_bot_mjolnir_pantalaimon_password` instead.)
  35. matrix_bot_mjolnir_access_token: ""
  36. # User name and password for the bot. Required when using Pantalaimon.
  37. # (Otherwise provide `matrix_bot_mjolnir_access_token` instead.)
  38. matrix_bot_mjolnir_pantalaimon_username: ""
  39. matrix_bot_mjolnir_pantalaimon_password: ""
  40. # The room ID where people can use the bot. The bot has no access controls, so
  41. # anyone in this room can use the bot - secure your room!
  42. # This should be a room alias or room ID - not a matrix.to URL.
  43. # Note: Mjolnir is fairly verbose - expect a lot of messages from it.
  44. matrix_bot_mjolnir_management_room: ""
  45. # Endpoint URL that Mjolnir uses to interact with the matrix homeserver (client-server API).
  46. # Set this to the pantalaimon URL if you're using that.
  47. matrix_bot_mjolnir_homeserver_url: ""
  48. # Endpoint URL that Mjolnir could use to fetch events related to reports (client-server API and /_synapse/),
  49. # only set this to the public-internet homeserver client API URL, do NOT set this to the pantalaimon URL.
  50. matrix_bot_mjolnir_raw_homeserver_url: ""
  51. # Default configuration template which covers the generic use case.
  52. # You can customize it by controlling the various variables inside it.
  53. #
  54. # For a more advanced customization, you can extend the default (see `matrix_bot_mjolnir_configuration_extension_yaml`)
  55. # or completely replace this variable with your own template.
  56. matrix_bot_mjolnir_configuration_yaml: "{{ lookup('template', 'templates/production.yaml.j2') }}"
  57. matrix_bot_mjolnir_configuration_extension_yaml: |
  58. # Your custom YAML configuration goes here.
  59. # This configuration extends the default starting configuration (`matrix_bot_mjolnir_configuration_yaml`).
  60. #
  61. # You can override individual variables from the default configuration, or introduce new ones.
  62. #
  63. # If you need something more special, you can take full control by
  64. # completely redefining `matrix_bot_mjolnir_configuration_yaml`.
  65. matrix_bot_mjolnir_configuration_extension: "{{ matrix_bot_mjolnir_configuration_extension_yaml | from_yaml if matrix_bot_mjolnir_configuration_extension_yaml | from_yaml is mapping else {} }}"
  66. # Holds the final configuration (a combination of the default and its extension).
  67. # You most likely don't need to touch this variable. Instead, see `matrix_bot_mjolnir_configuration_yaml`.
  68. matrix_bot_mjolnir_configuration: "{{ matrix_bot_mjolnir_configuration_yaml | from_yaml | combine(matrix_bot_mjolnir_configuration_extension, recursive=True) }}"