2019-12-31 20:35:37 +00:00
---
2022-07-18 07:39:08 +00:00
- ansible.builtin.set_fact :
2019-12-31 20:35:37 +00:00
ma1sd_url_endpoint_public : "https://{{ matrix_server_fqn_matrix }}/_matrix/identity/api/v1"
- name : Check ma1sd Identity Service
2022-07-18 07:39:08 +00:00
ansible.builtin.uri :
2019-12-31 20:35:37 +00:00
url : "{{ ma1sd_url_endpoint_public }}"
follow_redirects : none
validate_certs : "{{ matrix_ma1sd_self_check_validate_certificates }}"
2022-02-05 20:32:54 +00:00
check_mode : false
2019-12-31 20:35:37 +00:00
register : result_ma1sd
ignore_errors : true
2022-11-24 09:33:30 +00:00
delegate_to : 127.0 .0 .1
become : false
2019-12-31 20:35:37 +00:00
- name : Fail if ma1sd Identity Service not working
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2019-12-31 20:35:37 +00:00
msg : "Failed checking ma1sd is up at `{{ matrix_server_fqn_matrix }}` (checked endpoint: `{{ ma1sd_url_endpoint_public }}`). Is ma1sd running? Is port 443 open in your firewall? Full error: {{ result_ma1sd }}"
when : "result_ma1sd.failed or 'json' not in result_ma1sd"
- name : Report working ma1sd Identity Service
2022-07-18 07:39:08 +00:00
ansible.builtin.debug :
2019-12-31 20:35:37 +00:00
msg : "ma1sd at `{{ matrix_server_fqn_matrix }}` is working (checked endpoint: `{{ ma1sd_url_endpoint_public }}`)"