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
This commit updates SSL settings to be marked as obsolete: - Replace `ssl` with `ssl_enabled` - Replace `ca_file` with `ssl_certificate_authorities` - Replace `ssl_certificate_verification` with `ssl_verification_mode` `setup_ssl_params!` has been updated to only handle SSL inference when not explicitly configured. All changes have been updated in tests and in docs. The preparation for releasing a new major version is also included.
Copy file name to clipboardExpand all lines: docs/index.asciidoc
+16-7Lines changed: 16 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -478,6 +478,8 @@ Enable SSL/TLS secured communication to Elasticsearch cluster.
478
478
Leaving this unspecified will use whatever scheme is specified in the URLs listed in <<plugins-{type}s-{plugin}-hosts>> or extracted from the <<plugins-{type}s-{plugin}-cloud_id>>.
479
479
If no explicit protocol is specified plain HTTP will be used.
480
480
481
+
When not explicitly set, SSL will be automatically enabled if any of the specified hosts use HTTPS.
482
+
481
483
[id="plugins-{type}s-{plugin}-ssl_key"]
482
484
===== `ssl_key`
483
485
* Value type is <<path,path>>
@@ -608,12 +610,12 @@ option when authenticating to the Elasticsearch server. If set to an
Copy file name to clipboardExpand all lines: logstash-input-elasticsearch.gemspec
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Gem::Specification.newdo |s|
2
2
3
3
s.name='logstash-input-elasticsearch'
4
-
s.version='4.20.5'
4
+
s.version='5.0.0'
5
5
s.licenses=['Apache License (2.0)']
6
6
s.summary="Reads query results from an Elasticsearch cluster"
7
7
s.description="This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
it"should raise a config error with the appropriate message"do
68
+
expect{plugin.register}.toraise_errorLogStash::ConfigurationError,/The setting `#{obsolete_setting[:name]}` in plugin `elasticsearch` is obsolete and is no longer available. Set '#{obsolete_setting[:replacement]}' instead/i
0 commit comments