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.
 
 

61 lines
3.2 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. # A list of extra arguments to pass to the container
  17. matrix_bot_mjolnir_container_extra_arguments: []
  18. # List of systemd services that matrix-bot-mjolnir.service depends on
  19. matrix_bot_mjolnir_systemd_required_services_list: ['docker.service']
  20. # List of systemd services that matrix-bot-mjolnir.service wants
  21. matrix_bot_mjolnir_systemd_wanted_services_list: []
  22. # The access token for the bot user
  23. matrix_bot_mjolnir_access_token: ""
  24. # The room ID where people can use the bot. The bot has no access controls, so
  25. # anyone in this room can use the bot - secure your room!
  26. # This should be a room alias or room ID - not a matrix.to URL.
  27. # Note: Mjolnir is fairly verbose - expect a lot of messages from it.
  28. matrix_bot_mjolnir_management_room: ""
  29. # Default configuration template which covers the generic use case.
  30. # You can customize it by controlling the various variables inside it.
  31. #
  32. # For a more advanced customization, you can extend the default (see `matrix_bot_mjolnir_configuration_extension_yaml`)
  33. # or completely replace this variable with your own template.
  34. matrix_bot_mjolnir_configuration_yaml: "{{ lookup('template', 'templates/production.yaml.j2') }}"
  35. matrix_bot_mjolnir_configuration_extension_yaml: |
  36. # Your custom YAML configuration goes here.
  37. # This configuration extends the default starting configuration (`matrix_bot_mjolnir_configuration_yaml`).
  38. #
  39. # You can override individual variables from the default configuration, or introduce new ones.
  40. #
  41. # If you need something more special, you can take full control by
  42. # completely redefining `matrix_bot_mjolnir_configuration_yaml`.
  43. 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 {} }}"
  44. # Holds the final configuration (a combination of the default and its extension).
  45. # You most likely don't need to touch this variable. Instead, see `matrix_bot_mjolnir_configuration_yaml`.
  46. matrix_bot_mjolnir_configuration: "{{ matrix_bot_mjolnir_configuration_yaml | from_yaml | combine(matrix_bot_mjolnir_configuration_extension, recursive=True) }}"