jumpserver/apps/accounts/automations/verify_account/host/posix/main.yml

12 lines
333 B
YAML
Raw Normal View History

2022-10-28 10:28:41 +00:00
- hosts: demo
gather_facts: no
tasks:
2023-02-22 07:13:51 +00:00
- name: Verify account connectivity
2022-10-28 10:28:41 +00:00
become: no
2023-02-22 07:13:51 +00:00
ansible.builtin.ping:
2022-10-28 10:28:41 +00:00
vars:
2023-02-22 07:13:51 +00:00
ansible_become: no
2022-10-28 10:28:41 +00:00
ansible_user: "{{ account.username }}"
ansible_password: "{{ account.secret }}"
ansible_ssh_private_key_file: "{{ account.private_key_path }}"