Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
OS 2.17.1
Describe the issue:
I’m using logstash-output-opensearch plugin. And I have enabled MTLS configuration in logstash.conf. I don’t see any logs where Opensearch is validating the client request for MTLS verification. Does Opensearch support MTLS verification ??
Configuration:
output {
opensearch {
hosts => [ opensearch:9200 ]
ssl => true
user => username
password => password
tls_certificate => /path/to/tls.crt
tls_key => /path/to/tls.key
cacert => /path/to/root_ca
keystore => /path/to/keystore.jks
keystore_password => /path/to/.password
}
}