No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. common_timezone: 'Etc/UTC'
  2. admin_email: "{{ main_user_name }}@{{ domain }}"
  3. main_user_shell: "/bin/bash"
  4. server_hostname: "{{ server_fqdn }}"
  5. friendly_networks:
  6. - ""
  7. db_admin_username: 'postgres'
  8. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password length=32') }}"
  9. # let's encrypt
  10. letsencrypt_server: "https://acme-v02.api.letsencrypt.org/directory"
  11. # ssh
  12. # Following https://infosec.mozilla.org/guidelines/openssh
  13. kex_algorithms: "curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256"
  14. ciphers: "chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr"
  15. macs: "hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com"
  16. # ntp
  17. ntp_servers:
  18. - 0.pool.ntp.org
  19. - 1.pool.ntp.org
  20. - 2.pool.ntp.org
  21. - 3.pool.ntp.org
  22. # swap, size in mb, times count. defaults to 1GB.
  23. # using multiple swapfiles gives some flexibility
  24. # about resizing/adding/removing them in future.
  25. swap_file_size: 1024
  26. swap_file_count: 1
  27. swap_file_path: '/swapfile'