diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 45808264fad9..57ac471dab0c 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -209,6 +209,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix filebeat azure dashboards, event category should be `Alert`. {pull}14668[14668] - Update Logstash module's Grok patterns to support Logstash 7.4 logs. {pull}14743[14743] - Fix a problem in Filebeat input httpjson where interval is not used as time.Duration. {issue}14752[14752] {pull}14753[14753] +- Fix SSL config in input.yml for Filebeat httpjson input in the MISP module. {pull}14767[14767] *Heartbeat* diff --git a/x-pack/filebeat/module/misp/threat/config/input.yml b/x-pack/filebeat/module/misp/threat/config/input.yml index 302d535ce5e8..ca06ddcd002e 100644 --- a/x-pack/filebeat/module/misp/threat/config/input.yml +++ b/x-pack/filebeat/module/misp/threat/config/input.yml @@ -10,6 +10,7 @@ interval: {{ .interval }} json_objects_array: {{ .json_objects_array }} pagination: {{ .pagination }} url: {{ .url }} +ssl: {{ .ssl }} {{ else if eq .input "file" }} diff --git a/x-pack/filebeat/module/misp/threat/manifest.yml b/x-pack/filebeat/module/misp/threat/manifest.yml index a30ca6f626c8..41a85a6f74db 100644 --- a/x-pack/filebeat/module/misp/threat/manifest.yml +++ b/x-pack/filebeat/module/misp/threat/manifest.yml @@ -30,6 +30,9 @@ var: } - name: url default: "" + - name: ssl + default: |- + {} input: config/input.yml ingest_pipeline: ingest/pipeline.json