13 lines
393 B
YAML
13 lines
393 B
YAML
---
|
|
- name: Configure Windows Firewall
|
|
ansible.builtin.include_tasks: firewall.yml
|
|
|
|
- name: Install OpenSSH via Powershell
|
|
ansible.builtin.include_tasks: powershell.yml
|
|
|
|
- name: Add OpenSSH Pubkey Access
|
|
ansible.builtin.include_tasks: pubkeys.yml
|
|
|
|
- name: Add OpenSSH Pubkey Access for user
|
|
ansible.builtin.include_tasks: 'other_user_pubkeys.yml'
|
|
when: win_sshd_otheruserkeys | bool
|