| @@ -5065,6 +5065,7 @@ matrix_user_creator_users_auto: | | |||||
| ###################################################################### | ###################################################################### | ||||
| matrix_user_verification_service_enabled: false | matrix_user_verification_service_enabled: false | ||||
| matrix_user_verification_service_systemd_required_services_list: | | matrix_user_verification_service_systemd_required_services_list: | | ||||
| {{ | {{ | ||||
| ['docker.service'] | ['docker.service'] | ||||
| @@ -5072,6 +5073,8 @@ matrix_user_verification_service_systemd_required_services_list: | | |||||
| (['matrix-' + matrix_homeserver_implementation + '.service']) | (['matrix-' + matrix_homeserver_implementation + '.service']) | ||||
| }} | }} | ||||
| matrix_user_verification_service_container_network: "{{ matrix_addons_container_network }}" | |||||
| matrix_user_verification_service_container_additional_networks: | | matrix_user_verification_service_container_additional_networks: | | ||||
| {{ | {{ | ||||
| ( | ( | ||||
| @@ -25,7 +25,7 @@ matrix_user_verification_service_docker_image: "{{ matrix_user_verification_serv | |||||
| matrix_user_verification_service_docker_image_force_pull: "{{ matrix_user_verification_service_docker_image.endswith(':latest') }}" | matrix_user_verification_service_docker_image_force_pull: "{{ matrix_user_verification_service_docker_image.endswith(':latest') }}" | ||||
| # The base container network. It will be auto-created by this role if it doesn't exist already. | # The base container network. It will be auto-created by this role if it doesn't exist already. | ||||
| matrix_user_verification_service_container_network: "{{ matrix_docker_network }}" | |||||
| matrix_user_verification_service_container_network: "" | |||||
| # A list of additional container networks that the container would be connected to. | # A list of additional container networks that the container would be connected to. | ||||
| # The role does not create these networks, so make sure they already exist. | # The role does not create these networks, so make sure they already exist. | ||||
| @@ -31,3 +31,4 @@ | |||||
| when: "item.when | bool and vars[item.name] == ''" | when: "item.when | bool and vars[item.name] == ''" | ||||
| with_items: | with_items: | ||||
| - {'name': 'matrix_user_verification_service_uvs_homeserver_url', when: true} | - {'name': 'matrix_user_verification_service_uvs_homeserver_url', when: true} | ||||
| - {'name': 'matrix_user_verification_service_container_network', when: true} | |||||