Hello everyone,
i've got the following Setup:
3 Node Cluster
OS: RedHat 8.6
Kibana: 7.17
Elasticsearch: 7.17
Winlogbeat/Filebeat: 7.17
So i've followed the "Secure your Cluster"-Guides provided:
Minimal:
Basic:
Secure + HTTPs:
It all worked fine and my Cluster is ready to gain some data.
I've looked around a bit - but did not find what i was looking for:
If i want my Filebeat and my winlogbeat-Agents to use encrypted channels to send data - the guide tells me to use the following:
output.elasticsearch:
hosts: ["https://myEShost:9200"]
ssl.certificate_authorities:
- /etc/pki/my_root_ca.pem
- /etc/pki/my_other_ca.pem
ssl.certificate: "/etc/pki/client.pem"
ssl.key: "/etc/pki/key.pem"
Do i simply use the elastic-stack-ca.p12 created in one of those guides to create a .pem Cert + Key via opensll-Command? Or am i missing a point here?
Thanks in advance!