16 lines
423 B
YAML
16 lines
423 B
YAML
|
- name: Verify HTTPTESTER environment variable
|
||
|
assert:
|
||
|
that:
|
||
|
- "lookup('env', 'HTTPTESTER') == '1'"
|
||
|
|
||
|
- name: Verify endpoints respond
|
||
|
ansible.windows.win_uri:
|
||
|
url: "{{ item }}"
|
||
|
validate_certs: no
|
||
|
with_items:
|
||
|
- http://ansible.http.tests/
|
||
|
- https://ansible.http.tests/
|
||
|
- https://sni1.ansible.http.tests/
|
||
|
- https://fail.ansible.http.tests/
|
||
|
- https://self-signed.ansible.http.tests/
|