CASSANDRA-18434 Update cassandra.yaml to provide example for accepted_protocols field

Add example in the yaml for accepted_protocols field of encrypted_options config introduced in CASSANDRA-13325.

Patch by Sudeep Rao; reviewed by TBD for CASSANDRA-#####
This commit is contained in:
Sudeep Rao 2023-05-12 21:20:52 +05:30
parent 5768e5ae41
commit c733b0e286
1 changed files with 6 additions and 0 deletions

View File

@ -1382,6 +1382,9 @@ server_encryption_options:
require_endpoint_verification: false
# More advanced defaults:
# protocol: TLS
# accepted_protocols: [
# TLSv1.2, TLSv1.1
# ]
# store_type: JKS
# cipher_suites: [
# TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
@ -1425,6 +1428,9 @@ client_encryption_options:
# truststore_password: cassandra
# More advanced defaults:
# protocol: TLS
# accepted_protocols: [
# TLSv1.2, TLSv1.1
# ]
# store_type: JKS
# cipher_suites: [
# TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,