-
Notifications
You must be signed in to change notification settings - Fork 608
[cloud_security_posture] Adding vulnerability fields #6823
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
Changes from all commits
d3335eb
7b62e15
c5f14ac
a657a2f
8841168
f2ef5d7
7c38bcf
47b42a6
6399ba0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,18 @@ | ||
| --- | ||
| description: Pipeline for cloudbeat vulnerabilities | ||
| processors: | ||
| - set: | ||
| field: ecs.version | ||
| value: '8.6.0' | ||
| - set: | ||
| field: ecs.version | ||
| value: "8.6.0" | ||
| - set: | ||
| field: cloud.service.name | ||
| value: "AWS EC2" | ||
| description: "Adding vulnerability type for cloudbeat version < 8.10" | ||
| if: ctx.cloud?.service?.name == null | ||
| on_failure: | ||
| - set: | ||
| field: event.kind | ||
| value: pipeline_error | ||
| - append: | ||
| field: error.message | ||
| value: '{{{ _ingest.on_failure_message }}}' | ||
| value: "{{{ _ingest.on_failure_message }}}" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| - name: cloud | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. consider capitalization for custom fields to avoid future conflicts |
||
| type: group | ||
| fields: | ||
| - name: service.name | ||
| type: keyword | ||
| - name: machine.type | ||
| type: keyword | ||
| - name: machine.Authentication.key | ||
| type: keyword | ||
| - name: machine.Launch_time | ||
| type: keyword | ||
| - name: machine.Image | ||
| type: keyword | ||
| - name: Tags | ||
| type: keyword | ||
| - name: availability_zone | ||
| type: keyword | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we might want to have |
||
| - name: Security.security_groups | ||
| type: object | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| - name: network | ||
| type: group | ||
| fields: | ||
| - name: Private_ip | ||
| type: keyword | ||
| - name: Public_ip | ||
| type: keyword | ||
| - name: Mac_addresses | ||
| type: keyword |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| # Deprecated replaced by cloud.instance fields | ||
| - name: resource | ||
| type: group | ||
| fields: | ||
|
|
||
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.
💯