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
- 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`
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-1Lines changed: 1 addition & 1 deletion
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