2023-04-14 10:31:09 +00:00
|
|
|
- hosts: custom
|
|
|
|
gather_facts: no
|
|
|
|
vars:
|
|
|
|
ansible_connection: local
|
|
|
|
|
|
|
|
tasks:
|
2023-06-15 10:33:05 +00:00
|
|
|
- name: Verify account (paramiko)
|
2023-04-14 10:31:09 +00:00
|
|
|
ssh_ping:
|
|
|
|
login_host: "{{ jms_asset.address }}"
|
|
|
|
login_port: "{{ jms_asset.port }}"
|
|
|
|
login_user: "{{ account.username }}"
|
|
|
|
login_password: "{{ account.secret }}"
|
2023-05-22 09:29:17 +00:00
|
|
|
login_secret_type: "{{ account.secret_type }}"
|
|
|
|
login_private_key_path: "{{ account.private_key_path }}"
|