Skip to content

Commit 6c1ca9f

Browse files
Make SA unique in webhook-datasource module (#25)
- making the SA unique and updating display name - minor change to update the tests to keep parity with backend onboarding api
1 parent f90e543 commit 6c1ca9f

File tree

3 files changed

+4
-4
lines changed
  • modules/services/webhook-datasource
  • test/examples/secure_threat_detection

3 files changed

+4
-4
lines changed

modules/services/webhook-datasource/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ resource "google_pubsub_topic_iam_member" "publisher_iam_member" {
9595
#-------------------#
9696

9797
resource "google_service_account" "push_auth" {
98-
account_id = "ingestion-topic-push-auth"
99-
display_name = "Push Auth Service Account"
98+
account_id = "sysdig-ingestion-${local.suffix}"
99+
display_name = "Sysdig Ingestion Push Auth Service Account"
100100
project = var.project_id
101101
}
102102

test/examples/secure_threat_detection/organization/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
sysdig = {
2727
source = "sysdiglabs/sysdig"
28-
version = ">= 1.23.1"
28+
version = ">= 1.23.2"
2929
}
3030
}
3131
}

test/examples/secure_threat_detection/single/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ terraform {
1515
required_providers {
1616
sysdig = {
1717
source = "sysdiglabs/sysdig"
18-
version = ">= 1.23.1"
18+
version = ">= 1.23.2"
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)