Skip to content

Commit 981409a

Browse files
committed
injest now copies cluster_id -> orchestrator.cluster.id if null
pr link updated Merged with main
1 parent f659da9 commit 981409a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

packages/cloud_security_posture/changelog.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
# 1.4.x - 8.9.x
55
# 1.3.x - 8.8.x
66
# 1.2.x - 8.7.x
7-
7+
- version: "1.5.0-preview28"
8+
changes:
9+
- description: Added ingest processor to copy cluster_id to orchestrator.cluster.id
10+
type: enhancement
11+
link: https://github.com/elastic/integrations/pull/7185
812
- version: "1.5.0-preview27"
913
changes:
1014
- description: Seperate KSPM and CSPM cloudformation templates

packages/cloud_security_posture/data_stream/findings/elasticsearch/ingest_pipeline/default.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ processors:
99
value: 'kspm'
1010
description: 'Backward compatibility cloudbeat version < 8.7'
1111
if: ctx.rule?.benchmark?.posture_type == null
12+
- set:
13+
field: orchestrator.cluster.id
14+
value: ctx.cluster_id
15+
description: 'Backward compatibility cloudbeat version < 8.8'
16+
if: ctx.orchestrator?.cluster?.id == null
1217
on_failure:
1318
- set:
1419
field: error.message

packages/cloud_security_posture/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
format_version: 2.3.0
22
name: cloud_security_posture
33
title: "Security Posture Management"
4-
version: "1.5.0-preview27"
4+
version: "1.5.0-preview28"
55
source:
66
license: "Elastic-2.0"
77
description: "Identify & remediate configuration risks in your Cloud infrastructure"

0 commit comments

Comments
 (0)