-
Notifications
You must be signed in to change notification settings - Fork 20
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
Add verify_cert option #13
Conversation
# If you need to use a custom X.509 CA (`.pem` certs) specify the path to that here | ||
# Set this to false to disable SSL/TLS certificate validation | ||
# Note: setting this to false is generally considered insecure! | ||
config :verify_cert, :validate => :boolean, :default => true |
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.
Thoughts about naming this :ssl_certificate_verification
. Just so we can be consistent with es-output
https://github.com/logstash-plugins/logstash-output-elasticsearch/blob/master/lib/logstash/outputs/elasticsearch.rb#L282
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.
@suyograo makes sense, will do (though I'll point out that SSL has been replaced by TLS at this point).
Is there a way we could warn (to console) the user when this option is used? May be in |
@suyograo I don't have access to |
@andrewvc i'm cool with that 👍 |
@suyograo I just fixed the issue with inconsistent parameter names. Looking better? |
LGTM |
Thanks @suyograo ! |
Merged sucessfully into master! |
Fixes #12