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.
 
 

82 lines
4.4 KiB

  1. ---
  2. # Set this to the display name for ansible used in Output e.g. fail_msg
  3. matrix_user_verification_service_ansible_name: "Matrix User Verification Service"
  4. # Enable by default. This is overwritten in provided group vars.
  5. matrix_user_verification_service_enabled: true
  6. # Fix version tag
  7. matrix_user_verification_service_version: "v2.0.0"
  8. # Paths
  9. matrix_user_verification_service_base_path: "{{ matrix_base_data_path }}/user-verification-service"
  10. # We need the docker src directory to be named user_verification_service. See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/588
  11. matrix_user_verification_service_docker_src_files_path: "{{ matrix_user_verification_service_base_path }}/docker-src/user-verification-service"
  12. matrix_user_verification_service_config_path: "{{ matrix_user_verification_service_base_path }}/config"
  13. matrix_user_verification_service_config_env_file: "{{ matrix_user_verification_service_config_path }}/.env"
  14. # Set this to true in order to not use the docker image from docker hub, but rather build locally
  15. matrix_user_verification_service_container_image_self_build: false
  16. matrix_user_verification_service_container_image_self_build_repo: "https://github.com/matrix-org/matrix-user-verification-service.git"
  17. matrix_user_verification_service_container_image_self_build_branch: "{{ matrix_user_verification_service_version }}"
  18. # Docker
  19. matrix_user_verification_service_docker_image_name_prefix: "{{ 'localhost/' if matrix_user_verification_service_container_image_self_build else matrix_container_global_registry_prefix }}"
  20. matrix_user_verification_service_docker_image: "{{ matrix_user_verification_service_docker_image_name_prefix }}matrixdotorg/matrix-user-verification-service:{{ matrix_user_verification_service_version }}"
  21. matrix_user_verification_service_docker_image_force_pull: "{{ matrix_user_verification_service_docker_image.endswith(':latest') }}"
  22. matrix_user_verification_service_container_name: "matrix-user-verification-service"
  23. # Normally this would run on port 3000 however that may conflict with grafana. It is thus advised to change this port.
  24. #matrix_user_verification_service_container_http_host_bind_port:
  25. matrix_user_verification_service_container_extra_arguments: []
  26. # Systemd
  27. matrix_user_verification_service_systemd_required_services_list: []
  28. matrix_user_verification_service_systemd_wanted_services_list: []
  29. matrix_user_verification_service_systemd_service_basename: "matrix-user-verification-service"
  30. matrix_user_verification_service_systemd_service_name: "{{ matrix_user_verification_service_systemd_service_basename }}.service"
  31. # Matrix User Verification Service Configuration
  32. ## REQUIRED
  33. # Homeserver client API admin token (synapse only)- Required for the service to verify room membership
  34. # matrix_user_verification_service_uvs_access_token:
  35. # homeserver client api url
  36. # matrix_user_verification_service_uvs_homeserver_url: ""
  37. # disable check for non private ip range of homeserver. e.g. set to `true` if your homeserver domain resolves to a private ip.
  38. matrix_user_verification_service_uvs_disable_ip_blacklist: false
  39. ## OPTIONAL
  40. # Auth token to protect the API
  41. # If this is set any calls to the provided API endpoints
  42. # need have the header "Authorization: Bearer changeme".
  43. # matrix_user_verification_service_uvs_auth_token: changeme
  44. # Matrix server name to verify OpenID tokens against. See below section.
  45. # Defaults to empty value which means verification is made against
  46. # whatever Matrix server name passed in with the token
  47. # matrix_user_verification_service_uvs_openid_verify_server_name: matrix.org
  48. # Log level, defaults to 'info'
  49. # See choices here: https://github.com/winstonjs/winston#logging-levels
  50. # matrix_user_verification_service_uvs_log_level: info
  51. ######################################################################
  52. ##### #####
  53. ##### Variables used in this role which are not set by this role #####
  54. ##### #####
  55. ######################################################################
  56. # matrix_user_username
  57. # matrix_user_groupname
  58. # matrix_user_uid
  59. # matrix_user_gid
  60. # matrix_container_global_registry_prefix
  61. # matrix_docker_network
  62. # devture_systemd_docker_base_systemd_path
  63. # devture_systemd_docker_base_systemd_unit_home_path
  64. # devture_systemd_docker_base_host_command_sh
  65. # devture_systemd_docker_base_host_command_docker