blob: 518e73d0df3e7060cdd1e24b0f2f510211db64fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Playbook: winremote_check_test.yml
# Descripción: Verifica acceso remoto a un equipo Windows mediante SSH y ejecución de PowerShell
# Autor: Luis GuLo
tasks:
- name: Verificar acceso remoto a Windows
module: winremote_check
args:
winuser: guillermo
winpassword: "{{ vault('winpass') }}"
port: 2222
|