Skip to content

Commit

Permalink
Default to TLS1.3 or TLS1.2 by default since puppet supports both
Browse files Browse the repository at this point in the history
  • Loading branch information
jcpunk authored and ekohl committed Jan 11, 2023
1 parent d1e6b34 commit 2835ba2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@
# $server_connect_timeout:: How long the server will wait for a response to a connection attempt
#
# $server_ssl_protocols:: Array of SSL protocols to use.
# Defaults to [ 'TLSv1.2' ]
# Defaults to [ 'TLSv1.3', 'TLSv1.2' ]
#
# $server_ssl_chain_filepath:: Path to certificate chain for puppetserver
# Only used when $ca is true
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@
'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256',
'TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384',
]
$server_ssl_protocols = ['TLSv1.2']
$server_ssl_protocols = ['TLSv1.3', 'TLSv1.2']
$server_ssl_chain_filepath = undef
$server_check_for_updates = true
$server_environment_class_cache_enabled = false
Expand Down
2 changes: 1 addition & 1 deletion manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
# Defaults to the Jetty default of 30s
#
# $ssl_protocols:: Array of SSL protocols to use.
# Defaults to [ 'TLSv1.2' ]
# Defaults to [ 'TLSv1.3', 'TLSv1.2' ]
#
# $ssl_chain_filepath:: Path to certificate chain for puppetserver
# Defaults to "${ssl_dir}/ca/ca_crt.pem"
Expand Down

0 comments on commit 2835ba2

Please sign in to comment.