Saltstack Official OpenSSH Formula
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.

31 lines
967B

  1. default:
  2. openssh:
  3. sshd_enable: True
  4. sshd_binary: /usr/sbin/sshd
  5. sshd_config: /etc/ssh/sshd_config
  6. sshd_config_src: sshd_config # Default TOFS source filename
  7. sshd_config_user: root
  8. sshd_config_group: root
  9. sshd_config_mode: '644'
  10. sshd_config_backup: True
  11. ssh_config: /etc/ssh/ssh_config
  12. ssh_config_src: ssh_config # Default TOFS source filename
  13. ssh_config_user: root
  14. ssh_config_group: root
  15. ssh_config_mode: '644'
  16. ssh_config_backup: True
  17. banner: /etc/ssh/banner
  18. banner_src: banner # Default TOFS source filename
  19. ssh_known_hosts: /etc/ssh/ssh_known_hosts
  20. ssh_known_hosts_src: ssh_known_hosts # Default TOFS source filename
  21. dig_pkg: dnsutils
  22. ssh_moduli: /etc/ssh/moduli
  23. root_group: root
  24. # Prevent merge of array; always override values
  25. host_key_algos: ecdsa,ed25519,rsa
  26. # To manage/remove DSA:
  27. #host_key_algos: dsa,ecdsa,ed25519,rsa
  28. sshd_config: {}
  29. ssh_config: {}