Skip to content

Commit 405024c

Browse files
authored
Fix contains check for forwarded tag (#1818)
1 parent ef5b4b9 commit 405024c

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

packages/gcp/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "1.1.1"
3+
changes:
4+
- description: Fix logic that checks for the 'forwarded' tag
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/1818
27
- version: "1.1.0"
38
changes:
49
- description: Update to ECS 1.12.0

packages/gcp/data_stream/audit/agent/stream/gcp-pubsub.yml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tags:
1818
{{#each tags as |tag i|}}
1919
- {{tag}}
2020
{{/each}}
21-
{{#contains tags "forwarded"}}
21+
{{#contains "forwarded" tags}}
2222
publisher_pipeline.disable_host: true
2323
{{/contains}}
2424
{{#if processors}}

packages/gcp/data_stream/firewall/agent/stream/gcp-pubsub.yml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tags:
1818
{{#each tags as |tag i|}}
1919
- {{tag}}
2020
{{/each}}
21-
{{#contains tags "forwarded"}}
21+
{{#contains "forwarded" tags}}
2222
publisher_pipeline.disable_host: true
2323
{{/contains}}
2424
{{#if processors}}

packages/gcp/data_stream/vpcflow/agent/stream/gcp-pubsub.yml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tags:
1818
{{#each tags as |tag i|}}
1919
- {{tag}}
2020
{{/each}}
21-
{{#contains tags "forwarded"}}
21+
{{#contains "forwarded" tags}}
2222
publisher_pipeline.disable_host: true
2323
{{/contains}}
2424
{{#if processors}}

packages/gcp/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gcp
22
title: Google Cloud Platform (GCP)
3-
version: 1.1.0
3+
version: 1.1.1
44
release: ga
55
description: This Elastic integration collects logs from various Google Cloud Platform (GCP) services
66
type: integration

0 commit comments

Comments
 (0)