Is it possible to disable certificate validation when connecting a Splunk Search Collector?
Best Answer
-
How do I add a set of trusted root CAs to the list of trusted CAs that Cribl Stream trusts?
Set this environment variable in each Worker Node's environment (e.g., in its systemd unit file):NODE_EXTRA_CA_CERTS=/path/to/file_with_certs.pem.
For details, see the nodejs docs.So you cann add your self-signed CA via this method
There's also a way to disable ALL verification but I won't post that here because I refuse to support that 😜
Stolen from
btw0
Answers
-
How do I add a set of trusted root CAs to the list of trusted CAs that Cribl Stream trusts?
Set this environment variable in each Worker Node's environment (e.g., in its systemd unit file):NODE_EXTRA_CA_CERTS=/path/to/file_with_certs.pem.
For details, see the nodejs docs.So you cann add your self-signed CA via this method
There's also a way to disable ALL verification but I won't post that here because I refuse to support that 😜
Stolen from
btw0 -
Perfect! Thanks!!
0