Skip to content
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

[doc] remove pem certificate mention as it doesn't seem to be supported #947

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ this defaults to a concatenation of the path parameter and "_bulk"
* Value type is <<path,path>>
* There is no default value for this setting.

The .cer or .pem file to validate the server's certificate
The .cer or .crt file to validate the server's certificate

[id="plugins-{type}s-{plugin}-cloud_auth"]
===== `cloud_auth`
Expand Down
2 changes: 1 addition & 1 deletion lib/logstash/outputs/elasticsearch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class LogStash::Outputs::ElasticSearch < LogStash::Outputs::Base
# https://www.cs.utexas.edu/~shmat/shmat_ccs12.pdf
config :ssl_certificate_verification, :validate => :boolean, :default => true

# The .cer or .pem file to validate the server's certificate
# The .cer or .crt file to validate the server's certificate
config :cacert, :validate => :path

# The JKS truststore to validate the server's certificate.
Expand Down