diff options
Diffstat (limited to 'roles')
-rw-r--r-- | roles/sshd/handlers/main.yml | 4 | ||||
-rw-r--r-- | roles/sshd/tasks/main.yml | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/roles/sshd/handlers/main.yml b/roles/sshd/handlers/main.yml new file mode 100644 index 0000000..439395a --- /dev/null +++ b/roles/sshd/handlers/main.yml @@ -0,0 +1,4 @@ +- name: Restart sshd + ansible.builtin.service: + name: sshd + state: restarted diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml new file mode 100644 index 0000000..1991564 --- /dev/null +++ b/roles/sshd/tasks/main.yml @@ -0,0 +1,10 @@ +- name: Disable SSH password authentication + ansible.builtin.lineinfile: + dest: /etc/ssh/sshd_config + state: present + regexp: '^#?PasswordAuthentication' + line: 'PasswordAuthentication no' + validate: "/usr/sbin/sshd -t -f %s" + owner: root + group: root + mode: u+r,g+r,o+r |