matrix: Fix default value for synapse options

This value is expected to be a dict instead of an empty array and will otherwise throw errors.
This commit is contained in:
saibotk 2021-08-23 02:52:53 +02:00
parent 5a3d4cf171
commit 630460a300
Signed by: saibotk
GPG key ID: 67585F0065E261D5

View file

@ -35,7 +35,8 @@ matrix_synapse_servername: matrix.example.com
matrix_synapse_domain: "{{ matrix_synapse_servername }}"
# Additional synapse ENV options (keys will automatically be prefixed with SYNAPSE_) see https://github.com/matrix-org/synapse/tree/develop/docker#generating-a-configuration-file
matrix_synapse_options: []
# Note: Some keys are needed for generating the initial config file like "SYNAPSE_REPORT_STATS" and "SYNAPSE_SERVER_NAME"!
matrix_synapse_options: {}
# The database password to use
matrix_database_password: "{{ lookup('passwordstore', matrix_synapse_domain + '/db create=true length=42') }}"