-
Notifications
You must be signed in to change notification settings - Fork 82
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
Feat: support ssl_verification_mode => 'full' / 'none' #126
Conversation
@@ -20,7 +20,7 @@ Gem::Specification.new do |s| | |||
|
|||
# Gem dependencies | |||
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99" | |||
s.add_runtime_dependency "logstash-mixin-http_client", ">= 6.0.0", "< 8.0.0" | |||
s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.1.0", "< 8.0.0" |
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.
7.1.0 contains support for the ssl_verification_mode
option
🔴 8.x seems to be hitting a JNR bug (triggered by WEBrick used during testing):
|
|
||
* Value type is <<string,string>> | ||
* Supported values are: `full`, `none` | ||
* Default value is `full` |
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 am thinking what does full
mean. Beats has a nice doc
Maybe a good reference.
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.
OK, thought I would keep it short but we could copy the description from Beats' docs ...
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.
code, test and doc look good 🍎
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.
Left minor suggestion inline for your consideration. Otherwise, LGTM.
Co-authored-by: Karen Metts <[email protected]>
@kares u my hero |
How to disable ssl certificate verification in input? |
the feature itself comes from the mixin: logstash-plugins/logstash-mixin-http_client#39