13 lines
246 B
YAML
13 lines
246 B
YAML
---
|
|
|
|
# configure sshd
|
|
- name: "config - sshd"
|
|
ansible.builtin.template:
|
|
src: "templates/sshd/sshd_config.j2"
|
|
dest: "/etc/ssh/sshd_config"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0644"
|
|
notify: "restart ssh"
|
|
tags:
|
|
- "sshd"
|