perf: 修改 playbook 任务执行

This commit is contained in:
ibuler
2022-10-12 18:08:57 +08:00
parent 21816e3a39
commit 85a6f29a0a
48 changed files with 585 additions and 308 deletions

View File

@@ -0,0 +1,23 @@
- hosts: postgre
gather_facts: no
vars:
ansible_python_interpreter: /usr/local/bin/python
jms_account:
username: postgre
secret: postgre
jms_asset:
address: 127.0.0.1
port: 5432
database: testdb
account:
username: test
secret: jumpserver
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.database }}"