2022-10-12 10:08:57 +00:00
|
|
|
- hosts: postgre
|
|
|
|
gather_facts: no
|
|
|
|
vars:
|
|
|
|
ansible_python_interpreter: /usr/local/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 }}"
|
2023-01-31 09:57:06 +00:00
|
|
|
login_db: "{{ jms_asset.spec_info.db_name }}"
|
2023-02-08 10:13:05 +00:00
|
|
|
register: result
|
|
|
|
failed_when: not result.is_available
|