From ab0d9d56fb27f19b76fc7c3aba1f0d1936cd44bc Mon Sep 17 00:00:00 2001 From: Dmitry Ilvokhin Date: Sun, 28 Jan 2024 15:57:59 +0000 Subject: Disable ssh password authentication --- roles/sshd/handlers/main.yml | 4 ++++ roles/sshd/tasks/main.yml | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 roles/sshd/handlers/main.yml create mode 100644 roles/sshd/tasks/main.yml (limited to 'roles') 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 -- cgit v1.2.3-70-g09d2