Mostly complete, still needs cleanup

This commit is contained in:
Jonathan Cremin 2020-05-19 13:49:30 +01:00
parent a7eaa7dbfb
commit e17f84ad8a
18 changed files with 359 additions and 49 deletions

11
roles/ssh/tasks/main.yml Normal file
View file

@ -0,0 +1,11 @@
---
- name: Disable SSH password auth
template:
src: sshd_config.j2
dest: /etc/ssh/sshd_config
owner: root
group: root
mode: '0644'
notify: reload sshd
become: yes