mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
423 B
YAML
16 lines
423 B
YAML
4 years ago
|
- 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/
|