mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Replace removed Elasticsearch output SSL settings with the latest values
(cherry picked from commit f705a9de48
)
Co-authored-by: Rob Bavey <rob.bavey@elastic.co>
This commit is contained in:
parent
caa059998d
commit
21d9d68454
1 changed files with 6 additions and 6 deletions
|
@ -207,8 +207,8 @@ If TLS encryption is enabled on an on premise {{es}} cluster, you need to config
|
|||
output {
|
||||
elasticsearch {
|
||||
...
|
||||
ssl => true
|
||||
cacert => '/path/to/cert.pem' <1>
|
||||
ssl_enabled => true
|
||||
ssl_certificate_authorities => '/path/to/cert.pem' <1>
|
||||
}
|
||||
}
|
||||
```
|
||||
|
@ -230,10 +230,10 @@ The `elasticsearch` output supports PKI authentication. To use an X.509 client-c
|
|||
output {
|
||||
elasticsearch {
|
||||
...
|
||||
keystore => /path/to/keystore.jks
|
||||
keystore_password => realpassword
|
||||
truststore => /path/to/truststore.jks <1>
|
||||
truststore_password => realpassword
|
||||
ssl_keystore_path => /path/to/keystore.jks
|
||||
ssl_keystore_password => realpassword
|
||||
ssl_truststore_path => /path/to/truststore.jks <1>
|
||||
ssl_truststore_password => realpassword
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue