|
- # SPDX-FileCopyrightText: 2025 Jason LaGuidice
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
- # matrix-steam-bridge is a Matrix <-> Steam bridge
- # See: https://github.com/jasonlaguidice/matrix-steam-bridge
-
- matrix_bridge_steam_enabled: true
-
- matrix_bridge_steam_container_image_self_build: false
- matrix_bridge_steam_container_image_self_build_repo: "https://github.com/jasonlaguidice/matrix-steam-bridge.git"
- matrix_bridge_steam_container_image_self_build_repo_version: "{{ 'main' if matrix_bridge_steam_version == 'latest' else matrix_bridge_steam_version }}"
-
- # renovate: datasource=docker depName=ghcr.io/jasonlaguidice/matrix-steam-bridge
- matrix_bridge_steam_version: 1.3.0
- matrix_bridge_steam_container_image: "{{ matrix_bridge_steam_container_image_registry_prefix }}jasonlaguidice/matrix-steam-bridge:{{ matrix_bridge_steam_version }}"
- matrix_bridge_steam_container_image_registry_prefix: "{{ 'localhost/' if matrix_bridge_steam_container_image_self_build else matrix_bridge_steam_container_image_registry_prefix_upstream }}"
- matrix_bridge_steam_container_image_registry_prefix_upstream: "{{ matrix_bridge_steam_container_image_registry_prefix_upstream_default }}"
- matrix_bridge_steam_container_image_registry_prefix_upstream_default: "ghcr.io/"
- matrix_bridge_steam_container_image_tag: "{{ matrix_bridge_steam_version }}"
-
- matrix_bridge_steam_base_path: "{{ matrix_base_data_path }}/matrix-steam-bridge"
- matrix_bridge_steam_config_path: "{{ matrix_bridge_steam_base_path }}/config"
- matrix_bridge_steam_data_path: "{{ matrix_bridge_steam_base_path }}/data"
- matrix_bridge_steam_container_src_files_path: "{{ matrix_bridge_steam_base_path }}/docker-src"
-
- matrix_bridge_steam_homeserver_address: ""
- matrix_bridge_steam_homeserver_domain: "{{ matrix_domain }}"
- matrix_bridge_steam_appservice_address: "http://matrix-steam-bridge:{{ matrix_bridge_steam_appservice_port }}"
- matrix_bridge_steam_appservice_port: "8080"
-
- matrix_bridge_steam_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}"
- matrix_bridge_steam_self_sign_enabled: "{{ matrix_bridges_self_sign_enabled }}"
-
- # matrix -> steam presence
- matrix_bridge_steam_network_presence_enabled: true
- # Default inactivity state
- # This is what the bridge sets it's status to after some time of no user interaction
- matrix_bridge_steam_network_presence_inactivity_status: 'invisible'
-
- # steam -> matrix presence topic
- # Master switch for setting a Steam friend's current game (+ rich presence flavor
- # text) as the DM room's m.room.topic.
- matrix_bridge_steam_network_presence_topic_enabled: false
- # Append resolved rich presence flavor text to the topic (e.g. "Deadlock — Street Brawl: Paige (12 min)").
- matrix_bridge_steam_network_presence_topic_rich_presence_enabled: false
- # Fallback: show the raw unresolved rich presence token if resolution fails.
- matrix_bridge_steam_network_presence_topic_show_raw_tokens: false
-
- # A public address that external services can use to reach this appservice
- matrix_bridge_steam_appservice_public_address: "https://{{ matrix_server_fqn_matrix }}"
-
- # Public media configuration for external access to bridge media
- matrix_bridge_steam_public_media_enabled: true
- # A key for signing public media URLs. If set to "generate", a random key will be generated.
- # This will be auto-generated deterministically if matrix_homeserver_generic_secret_key is set.
- matrix_bridge_steam_public_media_signing_key: ''
- # Number of seconds that public media URLs are valid for. If set to 0, URLs will never expire.
- matrix_bridge_steam_public_media_expiry: 0
- matrix_bridge_steam_public_media_hash_length: 32
-
- # Display name template for Steam users.
- # Available template variables:
- # {{.PersonaName}} - The Steam display name/persona name (most commonly used)
- # {{.AccountName}} - The Steam account/login name
- # {{.SteamID}} - The numeric Steam ID
- # {{.ProfileURL}} - The Steam profile URL
- # You can use template functions like {{or}} to provide fallbacks.
- matrix_bridge_steam_network_displayname_template: "{% raw %}{{ .PersonaName }} (Steam){% endraw %}"
-
- matrix_bridge_steam_command_prefix: "!steam"
-
- matrix_bridge_steam_bridge_permissions: |
- {{
- {matrix_bridge_steam_homeserver_domain: 'user'}
- | combine ({matrix_admin: 'admin'} if matrix_admin else {})
- }}
-
- # TODO: May need to set network for public media?
- matrix_bridge_steam_container_network: ""
-
- matrix_bridge_steam_container_additional_networks: "{{ matrix_bridge_steam_container_additional_networks_auto + matrix_bridge_steam_container_additional_networks_custom }}"
- matrix_bridge_steam_container_additional_networks_auto: []
- matrix_bridge_steam_container_additional_networks_custom: []
-
- # matrix_bridge_steam_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
- # See `../templates/labels.j2` for details.
- #
- # To inject your own other container labels, see `matrix_bridge_steam_container_labels_additional_labels`.
- matrix_bridge_steam_container_labels_traefik_enabled: true
- matrix_bridge_steam_container_labels_traefik_docker_network: "{{ matrix_bridge_steam_container_network }}"
- matrix_bridge_steam_container_labels_traefik_entrypoints: web-secure
- matrix_bridge_steam_container_labels_traefik_tls: "{{ matrix_bridge_steam_container_labels_traefik_entrypoints != 'web' }}"
- matrix_bridge_steam_container_labels_traefik_tls_certResolver: default # noqa var-naming
-
- # Controls whether labels will be added that expose mautrix-instagram's metrics
- matrix_bridge_steam_container_labels_metrics_enabled: "{{ matrix_bridge_steam_metrics_enabled and matrix_bridge_steam_metrics_proxying_enabled }}"
- matrix_bridge_steam_container_labels_metrics_traefik_rule: "Host(`{{ matrix_bridge_steam_metrics_proxying_hostname }}`) && PathPrefix(`{{ matrix_bridge_steam_metrics_proxying_path_prefix }}`)"
- matrix_bridge_steam_container_labels_metrics_traefik_priority: 0
- matrix_bridge_steam_container_labels_metrics_traefik_entrypoints: "{{ matrix_bridge_steam_container_labels_traefik_entrypoints }}"
- matrix_bridge_steam_container_labels_metrics_traefik_tls: "{{ matrix_bridge_steam_container_labels_metrics_traefik_entrypoints != 'web' }}"
- matrix_bridge_steam_container_labels_metrics_traefik_tls_certResolver: "{{ matrix_bridge_steam_container_labels_traefik_tls_certResolver }}" # noqa var-naming
- matrix_bridge_steam_container_labels_metrics_middleware_basic_auth_enabled: false
- # See: https://doc.traefik.io/traefik/middlewares/http/basicauth/#users
- matrix_bridge_steam_container_labels_metrics_middleware_basic_auth_users: ''
-
- # matrix_bridge_steam_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
- # See `../templates/labels.j2` for details.
- #
- # Example:
- # matrix_bridge_steam_container_labels_additional_labels: |
- # my.label=1
- # another.label="here"
- matrix_bridge_steam_container_labels_additional_labels: ''
-
- # A list of extra arguments to pass to the container
- matrix_bridge_steam_container_extra_arguments: []
-
- # List of systemd services that matrix-steam-bridge.service depends on.
- matrix_bridge_steam_systemd_required_services_list: "{{ matrix_bridge_steam_systemd_required_services_list_default + matrix_bridge_steam_systemd_required_services_list_auto + matrix_bridge_steam_systemd_required_services_list_custom }}"
- matrix_bridge_steam_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
- matrix_bridge_steam_systemd_required_services_list_auto: []
- matrix_bridge_steam_systemd_required_services_list_custom: []
-
- # List of systemd services that matrix-steam-bridge.service wants
- matrix_bridge_steam_systemd_wanted_services_list: []
-
- matrix_bridge_steam_appservice_token: ''
- matrix_bridge_steam_homeserver_token: ''
-
- # Whether or not created rooms should have federation enabled.
- # If false, created portal rooms will never be federated.
- matrix_bridge_steam_matrix_federate_rooms: false
-
- # Bridge configuration options
- # Should every user have their own portals rather than sharing them?
- matrix_bridge_steam_bridge_split_portals: false
-
- # Cleanup on logout configuration
- matrix_bridge_steam_bridge_cleanup_on_logout_enabled: false
- # Valid values for cleanup actions: nothing, kick, unbridge, delete
- # nothing - Do nothing, let the user stay in the portals
- # kick - Remove the user from the portal rooms, but don't delete them
- # unbridge - Remove all ghosts in the room and disassociate it from the remote chat
- # delete - Remove all ghosts and users from the room (i.e. delete it)
- matrix_bridge_steam_bridge_cleanup_on_logout_manual_private: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_manual_relayed: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_manual_shared_no_users: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_manual_shared_has_users: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_bad_credentials_private: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_bad_credentials_relayed: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_bad_credentials_shared_no_users: nothing
- matrix_bridge_steam_bridge_cleanup_on_logout_bad_credentials_shared_has_users: nothing
-
- # Homeserver configuration options
- # Does the homeserver support MSC2246 (async media uploads)?
- matrix_bridge_steam_homeserver_async_media: false
-
- # Database-related configuration fields.
- #
- # To use Postgres:
- # - adjust your database credentials via the `matrix_bridge_steam_postgres_*` variables
- matrix_bridge_steam_database_engine: 'postgres'
-
- matrix_bridge_steam_database_username: 'matrix_steam_bridge'
- matrix_bridge_steam_database_password: 'some-password'
- matrix_bridge_steam_database_hostname: ''
- matrix_bridge_steam_database_port: 5432
- matrix_bridge_steam_database_name: 'matrix_steam_bridge'
- matrix_bridge_steam_database_sslmode: disable
-
- matrix_bridge_steam_database_connection_string: 'postgres://{{ matrix_bridge_steam_database_username }}:{{ matrix_bridge_steam_database_password }}@{{ matrix_bridge_steam_database_hostname }}:{{ matrix_bridge_steam_database_port }}/{{ matrix_bridge_steam_database_name }}?sslmode={{ matrix_bridge_steam_database_sslmode }}'
-
- matrix_bridge_steam_database_uri: "{{ {
- 'postgres': matrix_bridge_steam_database_connection_string,
- }[matrix_bridge_steam_database_engine] }}"
-
- matrix_bridge_steam_double_puppet_secrets: "{{ matrix_bridge_steam_double_puppet_secrets_auto | combine(matrix_bridge_steam_double_puppet_secrets_custom) }}"
- matrix_bridge_steam_double_puppet_secrets_auto: {}
- matrix_bridge_steam_double_puppet_secrets_custom: {}
-
- matrix_bridge_steam_appservice_bot_username: steambot
- matrix_bridge_steam_appservice_bot_displayname: Steam bridge bot
- matrix_bridge_steam_appservice_bot_avatar: mxc://shadowdrake.org/EeNKAcrmByNubPwoyceQsBaN
-
- matrix_bridge_steam_backfill_enabled: true
- # Maximum number of messages to backfill in empty rooms
- matrix_bridge_steam_backfill_max_initial_messages: 50
-
- # Maximum number of missed messages to backfill after bridge restarts
- matrix_bridge_steam_backfill_max_catchup_messages: 500
-
- # Shared secret for authentication of provisioning API requests.
- # If set to "disable", the provisioning API will be disabled.
- matrix_bridge_steam_provisioning_shared_secret: disable
-
- # Minimum severity of journal log messages.
- # Valid values: fatal, error, warn, info, debug, trace
- matrix_bridge_steam_logging_level: 'warn'
-
- # Whether or not metrics endpoint should be enabled.
- # Enabling them is usually enough for a local (in-container) Prometheus to consume them.
- # If metrics need to be consumed by another (external) Prometheus server, consider exposing them via `matrix_bridge_steam_metrics_proxying_enabled`.
- matrix_bridge_steam_metrics_enabled: false
-
- # Controls whether metrics should be exposed on a public URL.
- matrix_bridge_steam_metrics_proxying_enabled: false
- matrix_bridge_steam_metrics_proxying_hostname: ''
- matrix_bridge_steam_metrics_proxying_path_prefix: ''
-
- # Default configuration template which covers the generic use case.
- # You can customize it by controlling the various variables inside it.
- #
- # For a more advanced customization, you can extend the default (see `matrix_bridge_steam_configuration_extension_yaml`)
- # or completely replace this variable with your own template.
- matrix_bridge_steam_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
-
- matrix_bridge_steam_configuration_extension_yaml: |
- # Your custom YAML configuration goes here.
- # This configuration extends the default starting configuration (`matrix_bridge_steam_configuration_yaml`).
- #
- # You can override individual variables from the default configuration, or introduce new ones.
- #
- # If you need something more special, you can take full control by
- # completely redefining `matrix_bridge_steam_configuration_yaml`.
-
- matrix_bridge_steam_configuration_extension: "{{ matrix_bridge_steam_configuration_extension_yaml | from_yaml if matrix_bridge_steam_configuration_extension_yaml | from_yaml is mapping else {} }}"
-
- # Holds the final configuration (a combination of the default and its extension).
- # You most likely don't need to touch this variable. Instead, see `matrix_bridge_steam_configuration_yaml`.
- matrix_bridge_steam_configuration: "{{ matrix_bridge_steam_configuration_yaml | from_yaml | combine(matrix_bridge_steam_configuration_extension, recursive=True) }}"
-
- matrix_bridge_steam_registration_yaml: |
- id: steam
- as_token: "{{ matrix_bridge_steam_appservice_token }}"
- hs_token: "{{ matrix_bridge_steam_homeserver_token }}"
- namespaces:
- users:
- - exclusive: true
- regex: '^@steam_.+:{{ matrix_bridge_steam_homeserver_domain | regex_escape }}$'
- - exclusive: true
- regex: '^@{{ matrix_bridge_steam_appservice_bot_username | regex_escape }}:{{ matrix_bridge_steam_homeserver_domain | regex_escape }}$'
- url: {{ matrix_bridge_steam_appservice_address }}
- sender_localpart: _bot_{{ matrix_bridge_steam_appservice_bot_username }}
- rate_limited: false
- de.sorunome.msc2409.push_ephemeral: true
- receive_ephemeral: true
- io.element.msc4190: {{ matrix_bridge_steam_msc4190_enabled | to_json }}
-
- matrix_bridge_steam_registration: "{{ matrix_bridge_steam_registration_yaml | from_yaml }}"
-
- # Enable End-to-bridge encryption
- matrix_bridge_steam_bridge_encryption_allow: "{{ matrix_bridges_encryption_enabled }}"
- matrix_bridge_steam_bridge_encryption_default: "{{ matrix_bridges_encryption_default }}"
- matrix_bridge_steam_bridge_encryption_require: false
- matrix_bridge_steam_bridge_encryption_appservice: false
- matrix_bridge_steam_bridge_encryption_key_sharing_allow: "{{ matrix_bridge_steam_bridge_encryption_allow }}"
- matrix_bridge_steam_bridge_encryption_pickle_key: mautrix.bridge.e2ee
-
- # matrix_bridge_steam_restart_necessary controls whether the service
- # will be restarted (when true) or merely started (when false) by the
- # systemd service manager role (when conditional restart is enabled).
- #
- # This value is automatically computed during installation based on whether
- # any configuration files, the systemd service file, or the container image changed.
- # The default of `false` means "no restart needed" — appropriate when the role's
- # installation tasks haven't run (e.g., due to --tags skipping them).
- matrix_bridge_steam_restart_necessary: false
|