mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
An example configuration for TLS/SSL. (#37859)
This commit is contained in:
parent
7c1cfa82e4
commit
0c607ccaec
2 changed files with 18 additions and 0 deletions
|
@ -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 #####
|
||||
##########################################
|
||||
|
||||
|
|
|
@ -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 #####
|
||||
###########################################
|
||||
|
|
Loading…
Add table
Reference in a new issue