Hi @baber1223 Perhaps you are not very familer with YAML it is very specific with respect to syntax formatting and indentation
you have the ssl commented out which is required
# ---------------------------- Elasticsearch Output ----------------------------
output.elasticsearch:
# Array of hosts to connect to.
hosts: ["https://172.10.110.29:9200"]
username: "elastic"
password: "password"
ssl:
ca_trusted_fingerprint: "23:E9:D4:73:CE:99:BB:2C:6C:33:1F:43:C9:4D:A3:5B:30:96:AB:A8:3C:84:4A:B5:CB:04:45:8F:95:AE:83:BC"
Which is equivalent to
# ---------------------------- Elasticsearch Output ----------------------------
output.elasticsearch:
# Array of hosts to connect to.
hosts: ["https://172.10.110.29:9200"]
username: "elastic"
password: "password"
ssl.ca_trusted_fingerprint: "23:E9:D4:73:CE:99:BB:2C:6C:33:1F:43:C9:4D:A3:5B:30:96:AB:A8:3C:84:4A:B5:CB:04:45:8F:95:AE:83:BC"