-
Notifications
You must be signed in to change notification settings - Fork 307
Feat: add ssl_supported_protocols option #1055
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
Changes from all commits
52e35ee
5ed7a4c
bbbd02d
b41c955
c17bac9
e8d0abd
90736a6
eca80e6
5705182
90d2e6a
a7d754e
abaa296
73e4a22
cacdd6b
d8e8c27
ecdfa40
bd1ec71
4f9ad28
944e5d7
3883483
76b87eb
f32f319
96c4a66
82d4487
877377e
e7c6fb4
0655b45
d126939
09e4301
37912d3
8ae8452
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,8 @@ module APIConfigs | |
# Set the keystore password | ||
:keystore_password => { :validate => :password }, | ||
|
||
:ssl_supported_protocols => { :validate => ['TLSv1.1', 'TLSv1.2', 'TLSv1.3'], :default => [], :list => true }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ES also (still) supports: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm slightly wary of removing something that is a valid option with Elasticsearch, maybe we should keep it but warn? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we had a discussion with @jsvd on the topic and part of that outcome was that we start with |
||
|
||
# This setting asks Elasticsearch for the list of all cluster nodes and adds them to the hosts list. | ||
# Note: This will return ALL nodes with HTTP enabled (including master nodes!). If you use | ||
# this with master nodes, you probably want to disable HTTP on them by setting | ||
|
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.
I wonder if it makes sense to have a Logstash page equivalent to https://www.elastic.co/guide/en/elasticsearch/reference/current/jdk-tls-versions.html for Logstash for a single point of reference, given that this is copied across multiple plugins.
cc @karenzone
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.
It does @robbavey ! That refactor should happen separately from that PR, but I agree we should centralize this information. Pls open a docs issue so the idea isn't lost.
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.
Issue created - elastic/logstash#13962