An example configuration for TLS/SSL. (#37859)

This commit is contained in:
Dmitry Kuzmenko 2016-11-23 19:38:16 +03:00 committed by Nicole Thomas
parent 7c1cfa82e4
commit 0c607ccaec
2 changed files with 18 additions and 0 deletions

View file

@ -382,6 +382,15 @@
# will cause minion to throw an exception and drop the message.
# sign_pub_messages: False
# Use TLS/SSL encrypted connection between master and minion.
# Can be set to a dictionary containing keyword arguments corresponding to Python's
# 'ssl.wrap_socket' method.
# Default is None.
#ssl:
# keyfile: <path_to_keyfile>
# certfile: <path_to_certfile>
# ssl_version: PROTOCOL_TLSv1_2
##### Salt-SSH Configuration #####
##########################################

View file

@ -633,6 +633,15 @@
# "salt-key -f master.pub" on the Salt master.
#master_finger: ''
# Use TLS/SSL encrypted connection between master and minion.
# Can be set to a dictionary containing keyword arguments corresponding to Python's
# 'ssl.wrap_socket' method.
# Default is None.
#ssl:
# keyfile: <path_to_keyfile>
# certfile: <path_to_certfile>
# ssl_version: PROTOCOL_TLSv1_2
###### Thread settings #####
###########################################