Matrix Docker Ansible eploy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: Fail if required s3-storage-provider settings not defined
- ansible.builtin.fail:
- msg: >-
- You need to define a required configuration setting (`{{ item }}`) for using s3-storage-provider.
- when: "vars[item] == ''"
- with_items:
- - "matrix_synapse_ext_synapse_s3_storage_provider_config_bucket"
- - "matrix_synapse_ext_synapse_s3_storage_provider_config_region_name"
- - "matrix_synapse_ext_synapse_s3_storage_provider_config_access_key_id"
- - "matrix_synapse_ext_synapse_s3_storage_provider_config_secret_access_key"
- - "matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url"
-
- - name: Fail if required matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url looks invalid
- ansible.builtin.fail:
- msg: >-
- `matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url` needs to look like a URL (`http://` or `https://` prefix).
- when: "not matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url.startswith('http')"
|