Going through this tutorial.
They use openssl to generate certs to use with logstash ie this command:
sudo openssl req -subj '/CN=ELK_server_fqdn/' -x509 -days 3650 -batch -nodes -newkey rsa:2048 -keyout private/logstash-forwarder.key -out certs/logstash-forwarder.crt
Now the logstash-forwarder.crt will be installed on servers that will send logs to logstash.
My question is, if I have a Windows Certificate services infrastructure setup can I generate a cert for the logstash server via a Windows CA instead? Would there be any gotchas with this or compatibility problems?
I'm assuming I just submit a new cert request to the windows CA from the logstash/ELK server and generate a cert that would work the same way. Is this possible?