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

CSPM: add cloud connectors support #11663

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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.11.0-preview14"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we want this change in 8.16 ? as we didn't test 8.16 with this change, maybe it would be safer to have in in 1.12.x?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right; I forgot we still need to bump to 8.17.
This means I should merge after we bump the stable 1.11.0 to create the 1.12.0-preview1. (otherwise, it would be a bit more complicated to produce the stable 1.11.0 release with a backport branch).

changes:
- description: Add cloud connectors support
type: enhancement
link: https://github.com/elastic/integrations/pull/11663
- version: "1.11.0-preview13"
changes:
- description: Lowercase host.name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ config:
{{#if aws.account_type}}
account_type: {{aws.account_type}}
{{/if}}
{{#if supports_cloud_connectors}}
supports_cloud_connectors: {{supports_cloud_connectors}}
{{/if}}
credentials:
{{#if access_key_id}}
access_key_id: {{access_key_id}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ streams:
multi: false
required: false
show_user: false
- name: supports_cloud_connectors
type: bool
title: Supports Cloud Connectors
multi: false
required: false
show_user: false
secret: false
- input: cloudbeat/cis_gcp
title: CIS GCP Benchmark
description: CIS Benchmark for Google Cloud Platform Foundation
Expand Down
12 changes: 11 additions & 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.2.3
name: cloud_security_posture
title: "Security Posture Management"
version: "1.11.0-preview13"
version: "1.11.0-preview14"
source:
license: "Elastic-2.0"
description: "Identify & remediate configuration risks in your Cloud infrastructure"
Expand Down Expand Up @@ -133,6 +133,16 @@ policy_templates:
description: Template URL to Cloud Formation Cloud Credentials Stack
# ACCOUNT_TYPE value should be either "single-account" or "organization-account"
default: https://console.aws.amazon.com/cloudformation/home#/stacks/quickcreate?templateURL=https://elastic-cspm-cft.s3.eu-central-1.amazonaws.com/cloudformation-cspm-direct-access-key-ACCOUNT_TYPE-8.16.0.yml
- name: cloud_formation_cloud_connectors_template
type: text
title: CloudFormation Cloud Connectors Template
multi: false
required: true
show_user: false
description: Template URL to Cloud Formation Cloud Connectors Stack
# ACCOUNT_TYPE value should be either "single-account" or "organization-account"
# PROJECT_ID project id for serverless / deployment id for ess
default: https://console.aws.amazon.com/cloudformation/home#/stacks/quickcreate?templateURL=https://elastic-cspm-cft.s3.eu-central-1.amazonaws.com/cloudformation-cloud-connectors-ACCOUNT_TYPE-8.16.0.yml&param_ProjectId=PROJECT_ID
- type: cloudbeat/cis_gcp
title: GCP
description: CIS Benchmark for Google Cloud Platform Foundations
Expand Down