mirror of https://github.com/jumpserver/jumpserver
16 lines
565 B
YAML
16 lines
565 B
YAML
- hosts: custom
|
|
gather_facts: no
|
|
vars:
|
|
ansible_shell_type: sh
|
|
ansible_connection: local
|
|
|
|
tasks:
|
|
- name: Test asset connection (pyfreerdp)
|
|
rdp_ping:
|
|
login_user: "{{ jms_account.username }}"
|
|
login_password: "{{ jms_account.secret }}"
|
|
login_host: "{{ jms_asset.address }}"
|
|
login_port: "{{ jms_asset.protocols | selectattr('name', 'equalto', 'rdp') | map(attribute='port') | first }}"
|
|
login_secret_type: "{{ jms_account.secret_type }}"
|
|
login_private_key_path: "{{ jms_account.private_key_path }}"
|