Skip to content

Commit f6c1ebb

Browse files
authored
fix(google_gke_tenant): pin gke_service_account module version (#288)
1 parent f06d51a commit f6c1ebb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google_gke_tenant/gke_service_account.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resource "google_service_account" "gke-account" {
55
}
66

77
module "workload-identity-for-tenant-sa" {
8-
source = "github.com/mozilla/terraform-modules//google_workload_identity?ref=main"
8+
source = "github.com/mozilla/terraform-modules//google_workload_identity?ref=v2.6.1"
99

1010
name = "gha-${var.application}"
1111
namespace = "${var.application}-${var.environment}"
@@ -16,7 +16,7 @@ module "workload-identity-for-tenant-sa" {
1616
}
1717

1818
module "workload-identity-for-generic-tenant-sa" {
19-
source = "github.com/mozilla/terraform-modules//google_workload_identity?ref=main"
19+
source = "github.com/mozilla/terraform-modules//google_workload_identity?ref=v2.6.1"
2020

2121
name = var.application
2222
namespace = "${var.application}-${var.environment}"
@@ -27,7 +27,7 @@ module "workload-identity-for-generic-tenant-sa" {
2727
}
2828

2929
module "workload-identity-for-tenant-external-secrets-sa" {
30-
source = "github.com/mozilla/terraform-modules//google_workload_identity?ref=main"
30+
source = "github.com/mozilla/terraform-modules//google_workload_identity?ref=v2.6.1"
3131

3232
name = "external-secrets"
3333
namespace = "${var.application}-${var.environment}"

0 commit comments

Comments
 (0)