diff --git a/https/tls_config.go b/https/tls_config.go index 7d381b84..4b298627 100644 --- a/https/tls_config.go +++ b/https/tls_config.go @@ -50,7 +50,9 @@ func getTLSConfig(configPath string) (*tls.Config, error) { // ConfigToTLSConfig generates the golang tls.Config from the TLSStruct config. func ConfigToTLSConfig(c *TLSStruct) (*tls.Config, error) { - cfg := &tls.Config{} + cfg := &tls.Config{ + MinVersion: tls.VersionTLS12, + } if len(c.TLSCertPath) == 0 { return nil, errors.New("missing TLSCertPath") }