--- # Default variables for the matrix-webhooks role # Infrastructure # Ansible instructions to deploy the infrastructure # Copyright (C) 2021 Saibotk # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # The install location matrix_webhooks_install_location: /srv/matrix-webhooks # The location to store webhook related data in matrix_webhooks_data_location: "{{ matrix_webhooks_install_location }}/data" # Under which domain should the service be reachable via traefik matrix_webhooks_domain: "webhooks.example.com" # The certresolver that is used by traefik for this domain matrix_webhooks_traefik_certresolver: letsencrypt_http # The URL to the Client->Server API of the corresponding homeserver matrix_webhooks_hs_api_url: "https://matrix.example.com" # The domain part/right hand side of the MXID that this bot should run under (example: matrix.org) matrix_webhooks_hs_servername: "example.com" # Container versions # renovate: depName=docker.io/turt2live/matrix-appservice-webhooks matrix_webhooks_image_version: "latest" # The Provision API key matrix_webhooks_provisioning_key: "{{ lookup('passwordstore', matrix_webhooks_domain + '/provisioning-api create=true length=42') }}" # Webhook user profile (seems to be unused at the moment) matrix_webhooks_display_name: "Captain Webhook" matrix_webhooks_avatar: "http://i.imgur.com/IDOBtEJ.png"