mirror of https://github.com/jumpserver/jumpserver
14 lines
433 B
YAML
14 lines
433 B
YAML
- 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 }}"
|
|
login_db: "{{ jms_asset.specific.db_name }}"
|