677a2fc503
Details here: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_6.html#id36 Basically: ```yaml - name: Prior to 2.13 debug: msg: '[1] + {{ [2] }}' - name: 2.13 and forward debug: msg: '{{ [1] + [2] }}' ``` Interestingly, we had been using the new/safe syntax in lofs of places. We were using the broken one in many others though. Hopefully all instances were fixed by this patch.
13 lines
301 B
YAML
13 lines
301 B
YAML
---
|
|
|
|
- set_fact:
|
|
matrix_synapse_password_providers_enabled: true
|
|
|
|
matrix_synapse_additional_loggers: >
|
|
{{
|
|
matrix_synapse_additional_loggers
|
|
+
|
|
[{'name': 'ldap_auth_provider', 'level': 'INFO'}]
|
|
}}
|
|
when: matrix_synapse_ext_password_provider_ldap_enabled|bool
|