fix(v1): Include tls1.2 in supported TLS versions. I verified supported versions and default values in the Enterprise and OSS source.

pull/6389/head
Jason Stirnaman 2025-09-15 13:11:29 -05:00
parent 65588c21af
commit f0dc1932b4
1 changed files with 6 additions and 4 deletions

View File

@ -1679,9 +1679,10 @@ max-version = "tls1.3"
Default is `"tls1.3"`.
Minimum version of the TLS protocol that will be negotiated.
Valid values include: `tls1.0`, `tls1.1`, and `tls1.3`.
Valid values include: `tls1.0`, `tls1.1`, `tls1.2`, and `tls1.3`.
If not specified, `min-version` is the minimum TLS version specified in the [Go `crypto/tls` package](https://golang.org/pkg/crypto/tls/#pkg-constants).
In this example, `tls1.3` specifies the minimum version as TLS 1.3.
In the preceding example, `min-version = "tls1.3"` specifies the minimum version as TLS 1.3.
Environment variable: `INFLUXDB_TLS_MIN_VERSION`
@ -1690,9 +1691,10 @@ Environment variable: `INFLUXDB_TLS_MIN_VERSION`
Default is `"tls1.3"`.
The maximum version of the TLS protocol that will be negotiated.
Valid values include: `tls1.0`, `tls1.1`, and `tls1.3`.
Valid values include: `tls1.0`, `tls1.1`, `tls1.2`, and `tls1.3`.
If not specified, `max-version` is the maximum TLS version specified in the [Go `crypto/tls` package](https://golang.org/pkg/crypto/tls/#pkg-constants).
In this example, `tls1.3` specifies the maximum version as TLS 1.3.
In the preceding example, `max-version = "tls1.3"` specifies the maximum version as TLS 1.3.
Environment variable: `INFLUXDB_TLS_MAX_VERSION`