When connecting to Temporal Cloud, I am getting a Golang lint error on the TLS config that the MinVersion is too low:
TLS MinVersion too low
tlsConfig := &tls.Config{
Certificates: []tls.Certificate{*cert},
}
I see that the valid values for MinVersion are TLS10, TLS12, and TLS13.
Can we use any of these with Temporal Cloud? I assume I would want the TLS13 if Temporal Cloud supports it.