This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/roles/os_config/tasks/ssh.yml

26 lines
671 B
YAML
Raw Normal View History

2022-12-22 19:18:27 +00:00
# vim: ft=yaml.ansible
---
- name: Allow SSH login with public keys
2023-03-22 18:31:21 +00:00
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
2022-12-22 19:18:27 +00:00
regexp: '^#?PubkeyAuthentication '
line: PubkeyAuthentication yes
state: present
2023-05-28 16:46:01 +00:00
notify: Restart sshd
2022-12-22 19:18:27 +00:00
- name: Disallow SSH login with password
2023-03-22 18:31:21 +00:00
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
2022-12-22 19:18:27 +00:00
regexp: '^#?PasswordAuthentication '
line: PasswordAuthentication no
state: present
2023-05-28 16:46:01 +00:00
notify: Restart sshd
2022-12-22 19:18:27 +00:00
- name: Disallow root login over SSH
2023-03-22 18:31:21 +00:00
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
2022-12-22 19:18:27 +00:00
regexp: '^#?PermitRootLogin '
line: PermitRootLogin no
state: present
2023-05-28 16:46:01 +00:00
notify: Restart sshd