mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 04:15:23 -04:00
36 lines
760 B
YAML
36 lines
760 B
YAML
---
|
|
services:
|
|
- filebeat
|
|
- logstash
|
|
config:
|
|
without_tls: |-
|
|
input {
|
|
beats {
|
|
port => 5044
|
|
}
|
|
}
|
|
output {}
|
|
tls_server_auth: |-
|
|
input {
|
|
beats {
|
|
ssl_enabled => true
|
|
port => 5044
|
|
ssl_certificate => '<%=options[:ssl_certificate]%>'
|
|
ssl_key => '<%=options[:ssl_key]%>'
|
|
}
|
|
}
|
|
output {}
|
|
tls_mutual_auth: |-
|
|
input {
|
|
beats {
|
|
ssl_enabled => true
|
|
port => 5044
|
|
ssl_certificate => '<%=options[:ssl_certificate]%>'
|
|
ssl_key => '<%=options[:ssl_key]%>'
|
|
ssl_client_authentication => "required"
|
|
ssl_certificate_authorities => '<%=options[:ssl_certificate]%>'
|
|
}
|
|
}
|
|
output {}
|
|
input: how_sample.input
|
|
teardown_script:
|