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.

35 line
1018B

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