jumpserver/apps/assets/automations/ping/custom/ssh/main.yml

15 lines
461 B
YAML

- hosts: custom
gather_facts: no
vars:
ansible_connection: local
tasks:
- name: Test asset connection (paramiko)
ssh_ping:
login_user: "{{ jms_account.username }}"
login_password: "{{ jms_account.secret }}"
login_host: "{{ jms_asset.address }}"
login_port: "{{ jms_asset.port }}"
login_secret_type: "{{ jms_account.secret_type }}"
login_private_key_path: "{{ jms_account.private_key_path }}"