Skip to content

Commit

Permalink
Fix contains check for forwarded tag
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-gr committed Oct 5, 2021
1 parent 31bc4c9 commit b520d23
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions packages/infoblox/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.5.1"
changes:
- description: Fix logic that checks for the 'forwarded' tag
type: bugfix
link: https://github.com/elastic/integrations/pull/1824
- version: "0.5.0"
changes:
- description: Update to ECS 1.12.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fields:
vendor: "Infoblox"
product: "Network"
type: "IPAM"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Infoblox"
product: "Network"
type: "IPAM"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Infoblox"
product: "Network"
type: "IPAM"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
2 changes: 1 addition & 1 deletion packages/infoblox/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: infoblox
title: Infoblox NIOS
version: 0.5.0
version: 0.5.1
description: This Elastic integration collects logs from Infoblox NIOS
categories: ["network"]
release: experimental
Expand Down

0 comments on commit b520d23

Please sign in to comment.