Skip to content

Commit 3f6b438

Browse files
committed
fix(deps): Update Terraform terraform-google-modules/service-accounts/google to ~> 4.2.0
1 parent 076ddde commit 3f6b438

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples/gcs_event_arc_trigger_workflow/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ resource "random_string" "string" {
6464

6565
module "service_account" {
6666
source = "terraform-google-modules/service-accounts/google"
67-
version = "~> 4.1.1"
67+
version = "~> 4.2.0"
6868
project_id = var.project_id
6969
prefix = "gcs-eventarc-workflow"
7070
names = ["simple"]

examples/pubsub_event_arc_trigger_workflow/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource "google_pubsub_topic" "event_arc" {
2424

2525
module "service_account" {
2626
source = "terraform-google-modules/service-accounts/google"
27-
version = "~> 4.1.1"
27+
version = "~> 4.2.0"
2828
project_id = var.project_id
2929
prefix = "eventarc-workflow"
3030
names = ["simple"]

examples/schedule_workflow/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ data "google_compute_default_service_account" "default" {
1919

2020
module "service_account" {
2121
source = "terraform-google-modules/service-accounts/google"
22-
version = "~> 4.1.1"
22+
version = "~> 4.2.0"
2323
project_id = var.project_id
2424
prefix = "sa-workflow"
2525
names = ["simple"]

examples/schedule_workflow_with_arguments/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ data "google_compute_default_service_account" "default" {
1919

2020
module "service_account" {
2121
source = "terraform-google-modules/service-accounts/google"
22-
version = "~> 4.1.1"
22+
version = "~> 4.2.0"
2323
project_id = var.project_id
2424
prefix = "sa-workflow-with-args"
2525
names = ["simple"]

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ resource "random_string" "string" {
108108
module "service_account" {
109109
count = var.service_account_create ? 1 : 0
110110
source = "terraform-google-modules/service-accounts/google"
111-
version = "~> 4.1.1"
111+
version = "~> 4.2.0"
112112
project_id = var.project_id
113113
prefix = "wf-${random_string.string[0].result}"
114114
names = ["simple"]

0 commit comments

Comments
 (0)