ansible-sshd/vars/main.yml

17 lines
497 B
YAML
Raw Normal View History

2021-06-02 14:21:40 +02:00
__sshd_config_file: "/etc/ssh/sshd_config"
__sshd_config_owner: "root"
__sshd_config_group: "root"
__sshd_config_mode: "0600"
__sshd_hostkey_owner: "root"
__sshd_hostkey_group: "root"
__sshd_hostkey_mode: "0600"
# The OpenSSH 5.3 in RHEL6 does not support "Match all" so we need a workaround
__sshd_compat_match_all: Match all
# The hostkeys not supported in FIPS mode, if applicable
__sshd_hostkeys_nofips: []
2022-04-12 21:17:44 +02:00
__sshd_required_facts:
- distribution
- distribution_major_version
- os_family