Hi All,
I have the following configuration
input {
beats {
host => "127.0.0.1"
port => 5044
ssl => true
ssl_certificate_authorities => ["/etc/logstash/certs/trust.pem"]
ssl_certificate => "/etc/logstash/certs/cert.pem"
ssl_key => "/etc/logstash/certs/p8key.pem"
ssl_verify_mode => "force_peer"
ssl_key_passphrase => "passphrase"
}
}
I'm not supposed to show the passphrase in plain text here. How can I hide this?