Make TLS 1.2 *explicitly* required for cluster communications
This commit is contained in:
parent
7304311648
commit
67410ab230
|
@ -377,6 +377,7 @@ func (c *Core) ClusterTLSConfig() (*tls.Config, error) {
|
|||
ServerName: parsedCert.Subject.CommonName,
|
||||
ClientAuth: tls.RequireAndVerifyClientCert,
|
||||
ClientCAs: c.clusterCertPool,
|
||||
MinVersion: tls.VersionTLS12,
|
||||
}
|
||||
|
||||
return tlsConfig, nil
|
||||
|
|
Loading…
Reference in a new issue