From f580b39e564d7b2457236865d123c4c19e0c8333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Z=C3=A1vora?= Date: Sat, 3 Oct 2020 08:53:23 +0200 Subject: [PATCH 1/2] feat(chronograf-cli): add TLS ciphers and versions https://github.com/influxdata/chronograf/pull/5591 introduces new options, these are required in the 1.8.7 release of chronograf --- content/chronograf/v1.8/tools/chronograf-cli/_index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/chronograf/v1.8/tools/chronograf-cli/_index.md b/content/chronograf/v1.8/tools/chronograf-cli/_index.md index 7e92b6ba5..0848c162c 100644 --- a/content/chronograf/v1.8/tools/chronograf-cli/_index.md +++ b/content/chronograf/v1.8/tools/chronograf-cli/_index.md @@ -53,6 +53,9 @@ chronograf [flags] |:---------|:------------------------------------------------------------|:--------------------| | `--cert` | File path to PEM-encoded public key certificate | `$TLS_CERTIFICATE` | | `--key` | File path to private key associated with given certificate | `$TLS_PRIVATE_KEY` | +| `--tls-ciphers` | Comma-separated list of cipher suites to use. Use 'help' cipher to print available ciphers. | `$TLS_CIPHERS` | +| `--tls-min-version` | Minimum version of the TLS protocol that will be negotiated. (default: 1.2) | `$TLS_MIN_VERSION` | +| `--tls-max-version` | Maximum version of the TLS protocol that will be negotiated. | `$TLS_MAX_VERSION` | ## Other service option flags From 954102793766ff7c99e4ac235f2f14831ae37c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Z=C3=A1vora?= Date: Mon, 5 Oct 2020 19:15:00 +0200 Subject: [PATCH 2/2] chore: apply review of content/chronograf/v1.8/tools/chronograf-cli/_index.md Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com> --- content/chronograf/v1.8/tools/chronograf-cli/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/chronograf/v1.8/tools/chronograf-cli/_index.md b/content/chronograf/v1.8/tools/chronograf-cli/_index.md index 0848c162c..890851594 100644 --- a/content/chronograf/v1.8/tools/chronograf-cli/_index.md +++ b/content/chronograf/v1.8/tools/chronograf-cli/_index.md @@ -53,7 +53,7 @@ chronograf [flags] |:---------|:------------------------------------------------------------|:--------------------| | `--cert` | File path to PEM-encoded public key certificate | `$TLS_CERTIFICATE` | | `--key` | File path to private key associated with given certificate | `$TLS_PRIVATE_KEY` | -| `--tls-ciphers` | Comma-separated list of cipher suites to use. Use 'help' cipher to print available ciphers. | `$TLS_CIPHERS` | +| `--tls-ciphers` | Comma-separated list of supported cipher suites. Use `help` to print available ciphers. | `$TLS_CIPHERS` | | `--tls-min-version` | Minimum version of the TLS protocol that will be negotiated. (default: 1.2) | `$TLS_MIN_VERSION` | | `--tls-max-version` | Maximum version of the TLS protocol that will be negotiated. | `$TLS_MAX_VERSION` |