--- - name: test hosts: localhost connection: local tasks: - name: Invoke poller vars: url: http://localhost:8000/abc.json validate_certs: yes poll_interval: 10 poll_condition: '"failed" not in response.content and response.json.status=="running"' fail_condition: '"failed" in response.content' max_poll_attempts: 5 display_debug_msg_for_each_attempt: yes json_query_to_build_debug_msg: "tasks[?status=='running'] | [0].name" debug_msg_prefix: 'Prefix:' debug_msg_suffix: '' include_tasks: status-poller.yml