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