mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
23 lines
594 B
- hosts: postgresql
|
|
gather_facts: no
|
|
vars:
|
|
ansible_python_interpreter: /opt/py3/bin/python
|
|
|
|
tasks:
|
|
- name: Get info
|
|
community.postgresql.postgresql_info:
|
|
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: db_info
|
|
|
|
- name: Define info by set_fact
|
|
set_fact:
|
|
info:
|
|
version: "{{ db_info.server_version.raw }}"
|
|
|
|
- debug:
|
|
var: info
|