-
Notifications
You must be signed in to change notification settings - Fork 531
fix integrations with failing parsing hbs templates #16230
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
Merged
Merged
Changes from 11 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4405d64
fix hbs for auditd.yml.hbs
teresaromero 702ddef
fix hbs closing tag in gcs.yml.hbs
teresaromero 2e9b0f3
Revert "fix hbs for auditd.yml.hbs"
teresaromero 3d4c236
Refactor audit_rules formatting in auditd.yml.hbs for hbs compliance
teresaromero 4a09c3b
Revert "Refactor audit_rules formatting in auditd.yml.hbs for hbs com…
teresaromero 3b3faa6
fix hbs formatting for audit_rules in auditd.yml.hbs
teresaromero 50a3c79
Merge branch 'main' of github.com:elastic/integrations into fix-hbs-f…
teresaromero a92b6a5
update audit_rules formatting in auditd.yml.hbs
teresaromero 5e22ece
Merge branch 'main' of github.com:elastic/integrations into fix-hbs-f…
teresaromero bb93595
Update changelog and manifest for version 3.1.2: fix typo in ingest p…
teresaromero 6764b12
add bugfix at changelog for hbs format in ingest pipeline; bump versi…
teresaromero b17d38d
Add GCS test policies and update GCS stream template for Netskope int…
teresaromero 0d0dd2a
Merge branch 'main' into fix-hbs-files
teresaromero 802e947
Merge branch 'main' into fix-hbs-files
teresaromero 90556e7
Merge branch 'main' into fix-hbs-files
teresaromero File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,3 +46,4 @@ publisher_pipeline.disable_host: true | |
| processors: | ||
| {{processors}} | ||
| {{/if}} | ||
| {{/if}} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this closing "if" be moved between line 41 and 42 (after setting all tags)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or should it be after checking the
forwardedtag ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, you are right, i've changed into before forwarded, as this condition is based on tags but does not modify the tag list, it adds a bool variable to the policy.
I've checked this changed adding two policy test to the package 🧪