Skip to content
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
5 changes: 5 additions & 0 deletions packages/cloud_security_posture/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
# 1.4.x - 8.9.x
# 1.3.x - 8.8.x
# 1.2.x - 8.7.x
- version: "1.10.0-preview04"
changes:
- description: Support conditions in CSPM and KSPM
type: enhancement
link: https://github.com/elastic/integrations/pull/10298
- version: "1.10.0-preview03"
changes:
- description: Change field type to password where isSecret is true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ config:
{{#if role_arn}}
role_arn: {{role_arn}}
{{/if}}
type: {{aws.credentials.type}}
type: {{aws.credentials.type}}
{{#if condition}}
condition: {{ condition }}
{{/if}}
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ config:
{{#if azure.credentials.client_certificate_password}}
client_certificate_password: {{azure.credentials.client_certificate_password}}
{{/if}}
{{#if condition}}
condition: {{ condition }}
{{/if}}

Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,6 @@ credential_profile_name: {{credential_profile_name}}
{{#if role_arn}}
role_arn: {{role_arn}}
{{/if}}
{{#if condition}}
condition: {{ condition }}
{{/if}}
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ config:
{{#if gcp.credentials.json}}
credentials_json: '{{gcp.credentials.json}}'
{{/if}}
{{#if condition}}
condition: {{ condition }}
{{/if}}
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,7 @@ runtime_cfg:
- cis_5_2_8
- cis_5_2_9
- cis_5_2_10

{{#if condition}}
condition: {{ condition }}
{{/if}}
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,29 @@ streams:
description: CIS Benchmark for Kubernetes
template_path: vanilla.yml.hbs
enabled: false
vars:
- name: condition
title: Condition
description: |
Condition to filter when to collect this input. See [Dynamic Input Configuration](https://www.elastic.co/guide/en/fleet/current/dynamic-input-configuration.html) for details.
type: text
multi: false
required: false
show_user: false
- input: cloudbeat/cis_eks
title: Amazon EKS Benchmark
description: CIS Benchmark for Amazon Elastic Kubernetes Service (EKS)
template_path: eks.yml.hbs
enabled: false
vars:
- name: condition
title: Condition
description: |
Condition to filter when to collect this input. See [Dynamic Input Configuration](https://www.elastic.co/guide/en/fleet/current/dynamic-input-configuration.html) for details.
type: text
multi: false
required: false
show_user: false
- name: access_key_id
type: text
title: Access Key ID
Expand Down Expand Up @@ -69,6 +86,14 @@ streams:
template_path: aws.yml.hbs
enabled: false
vars:
- name: condition
title: Condition
description: |
Condition to filter when to collect this input. See [Dynamic Input Configuration](https://www.elastic.co/guide/en/fleet/current/dynamic-input-configuration.html) for details.
type: text
multi: false
required: false
show_user: false
- name: access_key_id
type: text
title: Access Key ID
Expand Down Expand Up @@ -125,6 +150,14 @@ streams:
template_path: gcp.yml.hbs
enabled: false
vars:
- name: condition
title: Condition
description: |
Condition to filter when to collect this input. See [Dynamic Input Configuration](https://www.elastic.co/guide/en/fleet/current/dynamic-input-configuration.html) for details.
type: text
multi: false
required: false
show_user: false
- name: gcp.account_type
type: text
title: Account Type
Expand Down Expand Up @@ -168,6 +201,14 @@ streams:
template_path: azure.yml.hbs
enabled: false
vars:
- name: condition
title: Condition
description: |
Condition to filter when to collect this input. See [Dynamic Input Configuration](https://www.elastic.co/guide/en/fleet/current/dynamic-input-configuration.html) for details.
type: text
multi: false
required: false
show_user: false
- name: azure.account_type
type: text
title: Account type
Expand Down
2 changes: 1 addition & 1 deletion packages/cloud_security_posture/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.0.0
name: cloud_security_posture
title: "Security Posture Management"
version: "1.10.0-preview03"
version: "1.10.0-preview04"
source:
license: "Elastic-2.0"
description: "Identify & remediate configuration risks in your Cloud infrastructure"
Expand Down