- hosts: postgre gather_facts: no vars: ansible_python_interpreter: /opt/py3/bin/python tasks: - name: Test PostgreSQL connection community.postgresql.postgresql_ping: login_user: "{{ jms_account.username }}" login_password: "{{ jms_account.secret }}" login_host: "{{ jms_asset.address }}" login_port: "{{ jms_asset.port }}" login_db: "{{ jms_asset.spec_info.db_name }}" register: result failed_when: not result.is_available