Skip to content

Commit 1d36c46

Browse files
committed
fix(deps): Update Terraform terraform-google-modules/service-accounts/google to ~> 4.6.0
1 parent 13d8067 commit 1d36c46

6 files changed

Lines changed: 6 additions & 6 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.6.0"
6868
project_id = var.project_id
6969
prefix = "eventarc-wf-${random_string.string.result}"
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
@@ -32,7 +32,7 @@ resource "random_string" "string" {
3232

3333
module "service_account" {
3434
source = "terraform-google-modules/service-accounts/google"
35-
version = "~> 4.1.1"
35+
version = "~> 4.6.0"
3636
project_id = var.project_id
3737
prefix = "eventarc-wf-${random_string.string.result}"
3838
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.6.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.6.0"
2323
project_id = var.project_id
2424
prefix = "sa-workflow-with-args"
2525
names = ["simple"]

examples/simple_workflow/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "service_account" {
1818
source = "terraform-google-modules/service-accounts/google"
19-
version = "~> 4.1.1"
19+
version = "~> 4.6.0"
2020
project_id = var.project_id
2121
prefix = "simple-workflow"
2222
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.6.0"
112112
project_id = var.project_id
113113
prefix = "wf-${random_string.string[0].result}"
114114
names = ["simple"]

0 commit comments

Comments
 (0)