Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1b5728f

Browse files
renshukimergify[bot]
authored andcommittedFeb 13, 2024·
[DOCS] Fix Elastic Agent input examples (#915)
(cherry picked from commit 8c7df57)
1 parent 715e4b4 commit 1b5728f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎docs/en/ingest-management/security/logstash-certificates.asciidoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ adjust it as needed.
124124
input {
125125
elastic_agent {
126126
port => 5044
127-
ssl => true
127+
ssl_enabled => true
128128
ssl_certificate_authorities => ["/path/to/ca.crt"]
129129
ssl_certificate => "/path/to/logstash.crt"
130130
ssl_key => "/path/to/logstash.pkcs8.key"
131-
ssl_verify_mode => "force_peer"
131+
ssl_client_authentication => "required"
132132
}
133133
}
134134
@@ -153,11 +153,11 @@ Self-managed {es} cluster example:
153153
input {
154154
elastic_agent {
155155
port => 5044
156-
ssl => true
156+
ssl_enabled => true
157157
ssl_certificate_authorities => ["/path/to/ca.crt"]
158158
ssl_certificate => "/path/to/logstash.crt"
159159
ssl_key => "/path/to/logstash.pkcs8.key"
160-
ssl_verify_mode => "force_peer"
160+
ssl_client_authentication => "required"
161161
}
162162
}
163163

0 commit comments

Comments
 (0)
Please sign in to comment.