16 lines
406 B
YAML
16 lines
406 B
YAML
---
|
|
- name: Verify
|
|
hosts: all
|
|
gather_facts: false
|
|
any_errors_fatal: true
|
|
|
|
tasks:
|
|
# kics-scan ignore-block
|
|
- name: "Make an HTTP query"
|
|
register: nginx_docker_this
|
|
failed_when: nginx_docker_this is failed or 'healthy' not in nginx_docker_this.content
|
|
ansible.builtin.uri:
|
|
url: "http://localhost:80/health/startup"
|
|
method: "GET"
|
|
return_content: true
|