Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fortinet] Fix contains check for forwarded tag #1817

Merged
merged 1 commit into from Oct 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/fortinet/changelog.yml
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.2.1"
changes:
- description: Fix logic that checks for the 'forwarded' tag
type: bugfix
link: https://github.com/elastic/integrations/pull/1817
- version: "1.2.0"
changes:
- description: Update to ECS 1.12.0
Expand Down
Expand Up @@ -16,7 +16,7 @@ fields:
vendor: "Fortinet"
product: "FortiClient"
type: "Anti-Virus"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Fortinet"
product: "FortiClient"
type: "Anti-Virus"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Fortinet"
product: "FortiClient"
type: "Anti-Virus"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -10,7 +10,7 @@ tags:
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}
{{#if internal_interfaces.length}}
Expand Down
Expand Up @@ -6,7 +6,7 @@ tags:
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}
{{#if internal_interfaces.length}}
Expand Down
Expand Up @@ -6,7 +6,7 @@ tags:
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}
{{#if internal_interfaces.length}}
Expand Down
Expand Up @@ -16,7 +16,7 @@ fields:
vendor: "Fortinet"
product: "FortiMail"
type: "Firewall"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Fortinet"
product: "FortiMail"
type: "Firewall"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Fortinet"
product: "FortiMail"
type: "Firewall"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -16,7 +16,7 @@ fields:
vendor: "Fortinet"
product: "FortiManager"
type: "Configuration"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Fortinet"
product: "FortiManager"
type: "Configuration"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
Expand Up @@ -13,7 +13,7 @@ fields:
vendor: "Fortinet"
product: "FortiManager"
type: "Configuration"
{{#contains tags "forwarded"}}
{{#contains "forwarded" tags}}
publisher_pipeline.disable_host: true
{{/contains}}

Expand Down
2 changes: 1 addition & 1 deletion packages/fortinet/manifest.yml
@@ -1,6 +1,6 @@
name: fortinet
title: Fortinet
version: 1.2.0
version: 1.2.1
release: ga
description: This Elastic integration collects logs from Fortinet instances
type: integration
Expand Down