Skip to content

Commit

Permalink
feat(modular): address feedback for modular support for cdr/ciem, reb…
Browse files Browse the repository at this point in the history
…ase and cleanup
  • Loading branch information
jose-pablo-camacho committed Sep 11, 2024
1 parent dfd45da commit e834d16
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GCP Webhook Datasource Module
# GCP PubSub Module

This Module creates the resources required to send AuditLogs logs to Sysdig via GCP Pub Subscription. These resources enable Threat Detection in the given GCP project or organization.
Before applying the changes defined in this module, the following operations need to be performed on the target GCP environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ resource "google_project_iam_member" "identity_mgmt" {
}

#-----------------------------------------------------------------------------------------------------------------------------------------
# Call Sysdig Backend to add the webhook-datasource integration to the Sysdig Cloud Account
# Call Sysdig Backend to add the pub-sub integration to the Sysdig Cloud Account
#
# Note (optional): To ensure this gets called after all cloud resources are created, add
# explicit dependency using depends_on
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/services/webhook-datasource/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
########################################################################################
# The webhook-datasource module takes care of provisioning the necessary resources to make Sysdig's
# The pub-sub module takes care of provisioning the necessary resources to make Sysdig's
# backend able to ingest data from a single GCP project.
#
# Before applying the changes defined in this module, the following operations need to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#---------------------------------------------------------------------------------------------

module "webhook-datasource" {
source = "../../../modules/integrations/webhook-datasource"
source = "../../../modules/integrations/pub-sub"
project_id = module.onboarding.project_id
is_organizational = module.onboarding.is_organizational
organization_domain = module.onboarding.organization_domain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#---------------------------------------------------------------------------------------------

module "webhook-datasource" {
source = "../../../modules/integrations/webhook-datasource"
source = "../../../modules/integrations/pub-sub"
project_id = module.onboarding.project_id
sysdig_secure_account_id = module.onboarding.sysdig_secure_account_id
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#---------------------------------------------------------------------------------------------

module "webhook-datasource" {
source = "../../../modules/integrations/webhook-datasource"
source = "../../../modules/integrations/pub-sub"
project_id = module.onboarding.project_id
is_organizational = module.onboarding.is_organizational
organization_domain = module.onboarding.organization_domain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#---------------------------------------------------------------------------------------------

module "webhook-datasource" {
source = "../../../modules/integrations/webhook-datasource"
source = "../../../modules/integrations/pub-sub"
project_id = module.onboarding.project_id
sysdig_secure_account_id = module.onboarding.sysdig_secure_account_id
}
Expand Down

0 comments on commit e834d16

Please sign in to comment.