Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions reference/fleet/logstash-output.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ input {
elastic_agent {
port => 5044
enrich => none <1>
ssl => true
ssl_enabled => true
ssl_certificate_authorities => ["<ca_path>"]
ssl_certificate => "<server_cert_path>"
ssl_key => "<server_cert_key_in_pkcs8>"
ssl_verify_mode => "force_peer"
ssl_client_authentication => "required"
}
}

Expand All @@ -52,8 +52,8 @@ output {
data_stream => "true"
api_key => "<api_key>" <3>
data_stream => true
ssl => true
# cacert => "<elasticsearch_ca_path>"
ssl_enabled => true
ssl_certificate_authorities => "<elasticsearch_ca_path>"
}
}
```
Expand Down
Loading