blob: f77cc3fce78a073a5d3000974622dd570f4dc359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
###############################################################################
# DO NOT EDIT. Set your variables in `vars/*.yml` instead.
# This is a reference of all the variables.
###############################################################################
hostname_fqdn: "{{ ansible_fqdn }}"
common_timezone: 'Etc/UTC'
# domain: (required)
# main_user_name: (required)
# admin_email: (required)
main_user_shell: "/bin/bash"
friendly_networks:
- ""
# ssh
ssh_kex_algorithms: "diffie-hellman-group-exchange-sha256"
ssh_ciphers: "aes256-ctr,aes192-ctr,aes128-ctr"
ssh_macs: "hmac-sha2-512,hmac-sha2-256,hmac-ripemd160"
sshd_allow_passwd: "no"
sshd_allow_chall_resp: "no"
sshd_print_motd: "no"
sshd_allow_root: "without-password"
sshd_forward_x11: "yes"
# ntp
ntp_servers:
# use nearby ntp servers by default
- 0.pool.ntp.org
- 1.pool.ntp.org
- 2.pool.ntp.org
- 3.pool.ntp.org
# use servers tailored to the server location
# See http://www.pool.ntp.org/en/use.html
# - 0.north-america.pool.ntp.org
# - 1.north-america.pool.ntp.org
# - 2.north-america.pool.ntp.org
# - 3.north-america.pool.ntp.org
|