From da3584d071710d8451db1771580c11ea5864e449 Mon Sep 17 00:00:00 2001 From: Mariana Dima Date: Tue, 25 Feb 2020 16:21:03 +0100 Subject: [PATCH] Filebeat Azure - Add missing var definitions in the manifest files (#16468) * Add vars * changelog * temp * line * update * take test out --- CHANGELOG.next.asciidoc | 1 + x-pack/filebeat/module/azure/activitylogs/manifest.yml | 3 +++ x-pack/filebeat/module/azure/auditlogs/manifest.yml | 3 +++ x-pack/filebeat/module/azure/signinlogs/manifest.yml | 3 +++ 4 files changed, 10 insertions(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index c5b6f756e96..df1ad669a88 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -76,6 +76,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Prevent Elasticsearch from spewing log warnings about redundant wildcards when setting up ingest pipelines for the `elasticsearch` module. {issue}15840[15840] {pull}15900[15900] - Fix mapping error for cloudtrail additionalEventData field {pull}16088[16088] - Fix a connection error in httpjson input. {pull}16123[16123] +- Adding the var definitions in azure manifest files, fix for errors when executing command setup. {issue}16270[16270] {pull}16468[16468] - Fix merging of fileset inputs to replace paths and append processors. {pull}16450{16450} *Heartbeat* diff --git a/x-pack/filebeat/module/azure/activitylogs/manifest.yml b/x-pack/filebeat/module/azure/activitylogs/manifest.yml index a051a0138ba..7375b6e42a4 100644 --- a/x-pack/filebeat/module/azure/activitylogs/manifest.yml +++ b/x-pack/filebeat/module/azure/activitylogs/manifest.yml @@ -7,6 +7,9 @@ var: default: "insights-operational-logs" - name: consumer_group default: "$Default" + - name: connection_string + - name: storage_account + - name: storage_account_key ingest_pipeline: - ingest/pipeline.json diff --git a/x-pack/filebeat/module/azure/auditlogs/manifest.yml b/x-pack/filebeat/module/azure/auditlogs/manifest.yml index d1379f19f3e..d6cd469718b 100644 --- a/x-pack/filebeat/module/azure/auditlogs/manifest.yml +++ b/x-pack/filebeat/module/azure/auditlogs/manifest.yml @@ -7,6 +7,9 @@ var: default: "insights-logs-auditlogs" - name: consumer_group default: "$Default" + - name: connection_string + - name: storage_account + - name: storage_account_key ingest_pipeline: - ingest/pipeline.json diff --git a/x-pack/filebeat/module/azure/signinlogs/manifest.yml b/x-pack/filebeat/module/azure/signinlogs/manifest.yml index 75183ed9290..f68109af4a1 100644 --- a/x-pack/filebeat/module/azure/signinlogs/manifest.yml +++ b/x-pack/filebeat/module/azure/signinlogs/manifest.yml @@ -7,6 +7,9 @@ var: default: "insights-logs-signinlogs" - name: consumer_group default: "$Default" + - name: connection_string + - name: storage_account + - name: storage_account_key ingest_pipeline: - ingest/pipeline.json