From 069156380ffd57e2444cb5bf775273e02893a375 Mon Sep 17 00:00:00 2001 From: Sergio Rua <58211930+digiserg@users.noreply.github.com> Date: Tue, 17 May 2022 08:23:50 +0100 Subject: [PATCH] Update SSL config for cassandra (#6145) Documentation was missing the references to the SSL key and cert --- docs/sources/configuration/_index.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/sources/configuration/_index.md b/docs/sources/configuration/_index.md index 85930e8682c4..05d29f5e1f44 100644 --- a/docs/sources/configuration/_index.md +++ b/docs/sources/configuration/_index.md @@ -1585,10 +1585,18 @@ cassandra: # CLI flag: -cassandra.host-verification [host_verification: | default = true] - # Path to certificate file to verify the peer when SSL is enabled. + # Path to CA certificate file to verify the peer when SSL is enabled. # CLI flag: -cassandra.ca-path [CA_path: ] + # Path to client certificate file when SSL is enabled. + # CLI flag: -cassandra.tls-cert-path + [tls_cert_path: ] + + # Path to key certificate file when SSL is enabled. + # CLI flag: -cassandra.tls-key-path + [tls_key_path: ] + # Enable password authentication when connecting to Cassandra. # CLI flag: -cassandra.auth [auth: | default = false]