We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ssl_verify_mode
The documentation for ssl_verify_mode lists the following allowed values: none, peer, force_peer.
none
peer
force_peer
If an invalid configuration is provided, the following exception is raised (https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats.rb#L148): Using verify_modeset to PEER or FORCE_PEER, requires the configuration ofcertificate_authorities` where
Using
set to PEER or FORCE_PEER, requires the configuration of
verify_mode
In the code there are locations, where the case for this settings does not matter (https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats.rb#L180) and other locations, where case indeed does matter (https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats.rb#L224).
Stumbled over this, while debugging a similar situation as mentioned in #196 (PR: #182).
The text was updated successfully, but these errors were encountered:
robbavey
No branches or pull requests
The documentation for
ssl_verify_mode
lists the following allowed values:none
,peer
,force_peer
.If an invalid configuration is provided, the following exception is raised (https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats.rb#L148):
Using
verify_modeset to PEER or FORCE_PEER, requires the configuration of
certificate_authorities` whereverify_mode
instead ofssl_verify_mode
In the code there are locations, where the case for this settings does not matter (https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats.rb#L180) and other locations, where case indeed does matter (https://github.com/logstash-plugins/logstash-input-beats/blob/master/lib/logstash/inputs/beats.rb#L224).
Stumbled over this, while debugging a similar situation as mentioned in #196 (PR: #182).
The text was updated successfully, but these errors were encountered: