11 lines
210 B
YAML
11 lines
210 B
YAML
---
|
|
- name: Configure SSH daemon
|
|
template:
|
|
src: sshd_config.j2
|
|
dest: /etc/ssh/sshd_config
|
|
backup: yes
|
|
mode: '0600'
|
|
owner: root
|
|
group: root
|
|
notify: restart sshd
|
|
tags: ['ssh-config'] |