Skip to content

Commit

Permalink
Make SA unique in webhook-datasource module (#25)
Browse files Browse the repository at this point in the history
- making the SA unique and updating display name
- minor change to update the tests to keep parity with backend onboarding api
  • Loading branch information
ravinadhruve10 authored Mar 21, 2024
1 parent f90e543 commit 6c1ca9f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/services/webhook-datasource/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ resource "google_pubsub_topic_iam_member" "publisher_iam_member" {
#-------------------#

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

Expand Down
2 changes: 1 addition & 1 deletion test/examples/secure_threat_detection/organization/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
sysdig = {
source = "sysdiglabs/sysdig"
version = ">= 1.23.1"
version = ">= 1.23.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/examples/secure_threat_detection/single/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ terraform {
required_providers {
sysdig = {
source = "sysdiglabs/sysdig"
version = ">= 1.23.1"
version = ">= 1.23.2"
}
}
}
Expand Down

0 comments on commit 6c1ca9f

Please sign in to comment.