outputs.http plugin allows using the following TLS configurations. But there is no way to set TLSMinVersion and TLSMaxVersion to force using a specific TLS version. (In my case TLS 1.2, because the server does not support < TLS 1.2). What is the correct way to do this? Thank you.
type ClientConfig struct {
TLSCA stringtoml:"tls_ca"
TLSCert stringtoml:"tls_cert"
TLSKey stringtoml:"tls_key"
InsecureSkipVerify booltoml:"insecure_skip_verify"
// Deprecated in 1.7; use TLS variables above
SSLCA stringtoml:"ssl_ca"
SSLCert stringtoml:"ssl_cert"
SSLKey stringtoml:"ssl_key"
}