From f0dc1932b424229118907b3954ee207d93e03476 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 15 Sep 2025 13:11:29 -0500 Subject: [PATCH] fix(v1): Include tls1.2 in supported TLS versions. I verified supported versions and default values in the Enterprise and OSS source. --- .../v1/administration/configure/config-data-nodes.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/content/enterprise_influxdb/v1/administration/configure/config-data-nodes.md b/content/enterprise_influxdb/v1/administration/configure/config-data-nodes.md index 6295ac3d5..8e73f7e6d 100644 --- a/content/enterprise_influxdb/v1/administration/configure/config-data-nodes.md +++ b/content/enterprise_influxdb/v1/administration/configure/config-data-nodes.md @@ -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`