mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-10 05:33:29 +01:00
f32003f051
The usage of set_facts inside of roles is not recommended if it is used for internal variables used only inside of the role. It is recommended to use variables with smaller scope to avoid inter-dependencies between different invocations of the same role as demonstrated in the tests_alternative_file.yml later in the patch series ttps://github.com/oasis-roles/meta_standards#ansible-best-practices
34 lines
787 B
YAML
34 lines
787 B
YAML
---
|
|
sshd_service: ssh
|
|
sshd_packages:
|
|
- openssh-server
|
|
- openssh-sftp-server
|
|
sshd_config_mode: "0644"
|
|
__sshd_defaults:
|
|
Port: 22
|
|
Protocol: 2
|
|
HostKey:
|
|
- /etc/ssh/ssh_host_rsa_key
|
|
- /etc/ssh/ssh_host_dsa_key
|
|
- /etc/ssh/ssh_host_ecdsa_key
|
|
- /etc/ssh/ssh_host_ed25519_key
|
|
UsePrivilegeSeparation: yes
|
|
SyslogFacility: AUTH
|
|
LogLevel: INFO
|
|
LoginGraceTime: 120
|
|
PermitRootLogin: without-password
|
|
StrictModes: yes
|
|
PubkeyAuthentication: yes
|
|
IgnoreRhosts: yes
|
|
HostbasedAuthentication: no
|
|
PermitEmptyPasswords: no
|
|
ChallengeResponseAuthentication: no
|
|
X11Forwarding: yes
|
|
X11DisplayOffset: 10
|
|
PrintMotd: no
|
|
PrintLastLog: yes
|
|
TCPKeepAlive: yes
|
|
AcceptEnv: LANG LC_*
|
|
Subsystem: "sftp {{ sshd_sftp_server }}"
|
|
UsePAM: yes
|
|
__sshd_os_supported: yes
|