Hello
Version of filebeat : 6.3.0
I don't understand why ssl.verification_mode is ignored.
In filebeat.yml, i am trying to configure ssl for ElasticSearchOutput.
https://www.elastic.co/guide/en/beats/filebeat/current/configuration-ssl.html
I am want to disable ssl verification to allow all connection.
I put "ssl.verification_mode: none" in filebeat.yml but in Filebeat log i still have error about certificate.
I try many things without success.
filebeat.yml
#-------------------------- Elasticsearch output ------------------------------
output.elasticsearch:
hosts: ["https://myurl:443/elastic"]
ssl.verification_mode: none
proxy_url: http://myproxy:8080
index: "filebeat-%{[fields.type]:other}-%{[beat.version]}-%{+yyyy.MM.dd}"
Filebeat Log
2019-01-30T09:49:46.389+0100 ERROR pipeline/output.go:74 Failed to connect: Get https://myurl:443: x509: certificate signed by unknown authority
2019-01-30T09:49:50.283+0100 ERROR pipeline/output.go:74 Failed to connect: Get https://myurl:443: x509: certificate signed by unknown authority
2019-01-30T09:49:55.301+0100 ERROR pipeline/output.go:74 Failed to connect: Get https://myurl:443: x509: certificate signed by unknown authority
2019-01-30T09:49:55.301+0100 INFO [publish] pipeline/retry.go:149 retryer: send wait signal to consumer
2019-01-30T09:49:55.301+0100 INFO [publish] pipeline/retry.go:151 done
Thanks in advance
Nabil