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
Mark previously deprecated SSL settings as obsolete (#1197)
* Mark previously deprecated SSL settings as obsolete
- SSL settings that were marked deprecated in version `11.14.0` are now marked
obsolete, and will prevent the plugin from starting.
- These settings are:
- `cacert`, which should be replaced by `ssl_certificate_authorities`
- `keystore`, which should be replaced by `ssl_keystore_path`
- `keystore_password`, which should be replaced by `ssl_keystore_password`
- `ssl`, which should be replaced by `ssl_enabled`
- `ssl_certificate_verification`, which should be replaced by
`ssl_verification_mode`
- `truststore`, which should be replaced by `ssl_truststore_path`
- `truststore_password`, which should be replaced by
`ssl_truststore_password`
* Restore deleted footer
Restore the deleted EOF as it is required for docs.
* Remove reference to deprecated options
* Remove characters copied from a diff view
* Fix reference to old removed ssl setting
Replace ssl with ssl_enabled.
* Remove whitespace
* Restore deleted pipe character
* Add a note detailing removal
Co-authored-by: Karen Metts <[email protected]>
---------
Co-authored-by: Karen Metts <[email protected]>
@@ -441,7 +443,7 @@ For more details on actions, check out the {ref}/docs-bulk.html[Elasticsearch bu
441
443
* There is no default value for this setting.
442
444
443
445
Authenticate using Elasticsearch API key.
444
-
Note that this option also requires SSL/TLS, which can be enabled by supplying a <<plugins-{type}s-{plugin}-cloud_id>>, a list of HTTPS <<plugins-{type}s-{plugin}-hosts>>, or by setting <<plugins-{type}s-{plugin}-ssl,`ssl_enabled => true`>>.
446
+
Note that this option also requires SSL/TLS, which can be enabled by supplying a <<plugins-{type}s-{plugin}-cloud_id>>, a list of HTTPS <<plugins-{type}s-{plugin}-hosts>>, or by setting <<plugins-{type}s-{plugin}-ssl_enabled,`ssl_enabled => true`>>.
445
447
446
448
Format is `id:api_key` where `id` and `api_key` are as returned by the
447
449
Elasticsearch {ref}/security-api-create-api-key.html[Create API key API].
@@ -1324,98 +1326,24 @@ https://www.elastic.co/blog/elasticsearch-versioning-support[versioning support
1324
1326
blog] and {ref}/docs-index_.html#_version_types[Version types] in the
deprecated[11.14.0, Replaced by <<plugins-{type}s-{plugin}-ssl_certificate_authorities>>]
1350
-
1351
-
* Value type is a list of <<path,path>>
1352
-
* There is no default value for this setting.
1353
-
1354
-
The .cer or .pem file to validate the server's certificate.
1355
-
1356
-
[id="plugins-{type}s-{plugin}-keystore"]
1357
-
===== `keystore`
1358
-
deprecated[11.14.0, Replaced by <<plugins-{type}s-{plugin}-ssl_keystore_path>>]
1359
-
1360
-
* Value type is <<path,path>>
1361
-
* There is no default value for this setting.
1362
-
1363
-
The keystore used to present a certificate to the server.
1364
-
It can be either .jks or .p12
1365
-
1366
-
NOTE: You cannot use this setting and <<plugins-{type}s-{plugin}-ssl_certificate>> at the same time.
1367
-
1368
-
[id="plugins-{type}s-{plugin}-keystore_password"]
1369
-
===== `keystore_password`
1370
-
deprecated[11.14.0, Replaced by <<plugins-{type}s-{plugin}-ssl_keystore_password>>]
1371
-
1372
-
* Value type is <<password,password>>
1373
-
* There is no default value for this setting.
1374
-
1375
-
Set the keystore password
1376
-
1377
-
[id="plugins-{type}s-{plugin}-ssl"]
1378
-
===== `ssl`
1379
-
deprecated[11.14.0, Replaced by <<plugins-{type}s-{plugin}-ssl_enabled>>]
1380
-
1381
-
* Value type is <<boolean,boolean>>
1382
-
* There is no default value for this setting.
1383
-
1384
-
Enable SSL/TLS secured communication to Elasticsearch cluster.
1385
-
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>>.
1386
-
If no explicit protocol is specified plain HTTP will be used.
Copy file name to clipboardExpand all lines: logstash-output-elasticsearch.gemspec
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Gem::Specification.newdo |s|
2
2
s.name='logstash-output-elasticsearch'
3
-
s.version='11.22.10'
3
+
s.version='12.0.0'
4
4
s.licenses=['apache-2.0']
5
5
s.summary="Stores logs in Elasticsearch"
6
6
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"
0 commit comments