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

[crowdstrike] Fix multi-line string handling for config variable #2701

Merged
merged 1 commit into from
Feb 16, 2022
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/crowdstrike/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.2.3"
changes:
- description: Change type of 'fdr_parsing_script' variable to 'yaml' so that the multi-line string creates a valid YAML config document.
type: bugfix
link: https://github.com/elastic/integrations/pull/2701
- version: "1.2.2"
changes:
- description: Add Ingest Pipeline script to map IANA Protocol Numbers
Expand All @@ -8,7 +13,7 @@
changes:
- description: Fix issue with "Is FDR Queue" selector having no effect.
type: bugfix
link: https://github.com/elastic/integrations/pull/
link: https://github.com/elastic/integrations/pull/2653
- version: "1.2.0"
changes:
- description: Update to ECS 8.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fips_enabled: {{fips_enabled}}
proxy_url: {{proxy_url}}
{{/if}}
{{#if is_fdr_queue}}
sqs.notification_parse_script: {{fdr_parsing_script}}
sqs.notification_parsing_script.source: {{fdr_parsing_script}}
{{/if}}
{{#if tags.length}}
tags:
Expand Down
2 changes: 1 addition & 1 deletion packages/crowdstrike/data_stream/fdr/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ streams:
show_user: false
description: URL to proxy connections in the form of http[s]://<user>:<password>@<server name/ip>:<port>
- name: fdr_parsing_script
type: text
type: yaml
title: FDR Notification Parsing Script
multi: false
required: true
Expand Down
2 changes: 1 addition & 1 deletion packages/crowdstrike/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: crowdstrike
title: CrowdStrike Logs
version: 1.2.2
version: 1.2.3
description: Collect and parse falcon logs from Crowdstrike products with Elastic Agent.
type: integration
format_version: 1.0.0
Expand Down