-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cli, security: add support for configurable TLS cipher suites #137663
base: master
Are you sure you want to change the base?
Conversation
It looks like your PR touches production code but doesn't add or edit any test code. Did you consider adding tests to your PR? 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
50f89cd
to
510ac96
Compare
e6e74d4
to
e7ff003
Compare
e7ff003
to
989aa5a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 10 of 10 files at r1, 9 of 9 files at r2, all commit messages.
Reviewable status:complete! 0 of 0 LGTMs obtained (waiting on @cthumuluru-crdb)
338f9b3
to
ef69b20
Compare
fixes cockroachdb#136999 Epic CRDB-45351 Release Note(security,ops): We will be providing a new cockroach start command cli flag `tls-cipher-suites` which is a string of comma separated list of cipher suites to be used for all incoming TLS connections to the node. For TLS 1.2, this should strictly be a subset of suites defined in security/tls_ciphersuites.go as RecommendedCipherSuites or OldCipherSuites. For TLS 1.3, this should be configured to a subset of ciphers in crypto/tls/cipher_suites.go. The flag will restrict TLS connections to the node for all 3 types of connection(i.e. sql, rpc, http) where node acts as the server for the connections and close non-conforming ones.
ef69b20
to
48a8538
Compare
cli, security: add support for configurable TLS cipher suites
fixes #136999
Epic CRDB-45351
Release Note(security,ops): We will be providing a new cockroach start command
cli flag
tls-cipher-suites
which is a string of comma separated list of ciphersuites to be used for all incoming TLS connections to the node. For TLS 1.2,
this should strictly be a subset of suites defined in
security/tls_ciphersuites.go as RecommendedCipherSuites or OldCipherSuites. For
TLS 1.3, this should be configured to a subset of ciphers in
crypto/tls/cipher_suites.go. The flag will restrict TLS connections to the node
for all 3 types of connection(i.e. sql, rpc, http) where node acts as the server
for the connections and close non-conforming ones.