jumpserver/apps/assets/automations/ping/database/postgresql/main.yml

14 lines
442 B
YAML
Raw Normal View History

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 }}"
2022-10-28 10:28:41 +00:00
login_db: "{{ jms_asset.category_property.db_name }}"