Make TLS 1.2 *explicitly* required for cluster communications

This commit is contained in:
Jeff Mitchell 2017-01-31 13:30:25 -05:00
parent 7304311648
commit 67410ab230

View file

@ -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