diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 2f16c88b4e9..c20c511d60c 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -125,6 +125,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Add MQTT input. {issue}15602[15602] {pull}16204[16204] - Add ECS categorization fields to activemq module. {issue}16151[16151] {pull}16201[16201] - Add a TLS test and more debug output to httpjson input {pull}16315[16315] +- Add an SSL config example in config.yml for filebeat MISP module. {pull}16320[16320] *Heartbeat* diff --git a/x-pack/filebeat/filebeat.reference.yml b/x-pack/filebeat/filebeat.reference.yml index 6b8c21273eb..58dc3ab2d73 100644 --- a/x-pack/filebeat/filebeat.reference.yml +++ b/x-pack/filebeat/filebeat.reference.yml @@ -547,6 +547,12 @@ filebeat.modules: # URL of the MISP REST API #var.url + + # You can also pass SSL options. For example: + #var.ssl: |- + # { + # verification_mode: none + # } #------------------------------- Mongodb Module ------------------------------- #- module: mongodb diff --git a/x-pack/filebeat/module/misp/_meta/config.yml b/x-pack/filebeat/module/misp/_meta/config.yml index 26d45406425..5353bf28b48 100644 --- a/x-pack/filebeat/module/misp/_meta/config.yml +++ b/x-pack/filebeat/module/misp/_meta/config.yml @@ -9,3 +9,9 @@ # URL of the MISP REST API #var.url + + # You can also pass SSL options. For example: + #var.ssl: |- + # { + # verification_mode: none + # } diff --git a/x-pack/filebeat/modules.d/misp.yml.disabled b/x-pack/filebeat/modules.d/misp.yml.disabled index ad014e39474..0299a64eb6d 100644 --- a/x-pack/filebeat/modules.d/misp.yml.disabled +++ b/x-pack/filebeat/modules.d/misp.yml.disabled @@ -12,3 +12,9 @@ # URL of the MISP REST API #var.url + + # You can also pass SSL options. For example: + #var.ssl: |- + # { + # verification_mode: none + # }