You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The referenced elasticsearch output plugin has deprecated the options that were specified (`ssl`, `cacert`) https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html#plugins-outputs-elasticsearch-deprecated-options
When I tried using the `ssl` option I noticed a warning in the logstash logs:
```
[WARN ][logstash.outputs.elasticsearch] You are using a deprecated config setting "ssl" set in elasticsearch. Deprecated settings will continue to work, but are scheduled for removal from logstash in the future. Set 'ssl_enabled' instead. If you have any questions about this, please visit the #logstash channel on freenode irc.
```
I have updated this document with the suggested new options to use instead.
(cherry picked from commit 3402310)
Co-authored-by: Matt Johnson <[email protected]>
Copy file name to clipboardExpand all lines: docs/static/security/tls-encryption.asciidoc
+7-5
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,23 @@
3
3
=== Configuring Logstash to use TLS/SSL encryption
4
4
5
5
If TLS encryption is enabled on an on premise {es} cluster, you need to
6
-
configure the `ssl` and `cacert` options in your Logstash `.conf` file:
6
+
configure the `ssl_enabled` and `ssl_certificate_authorities` options in your Logstash `.conf` file:
7
+
8
+
NOTE: See https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html[elasticsearch output plugin documentation] for a full list of options
0 commit comments