Skip to content

Commit

Permalink
Modified all occurances of WI module
Browse files Browse the repository at this point in the history
  • Loading branch information
hsachdevah committed Mar 7, 2024
1 parent 5cf747c commit 5055e60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions applications/rag/frontend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ module "iap_auth" {

module "frontend-workload-identity" {
source = "terraform-google-modules/kubernetes-engine/google//modules/workload-identity"
version = "30.0.0" # Pinning to a previous version as current version (30.1.0) showed inconsitent behaviour with workload identity service accounts
use_existing_gcp_sa = !var.create_service_account
name = var.google_service_account
namespace = var.namespace
Expand Down
1 change: 1 addition & 0 deletions modules/jupyter/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ module "iap_auth" {

module "jupyterhub-workload-identity" {
source = "terraform-google-modules/kubernetes-engine/google//modules/workload-identity"
version = "30.0.0" # Pinning to a previous version as current version (30.1.0) showed inconsitent behaviour with workload identity service accounts
name = var.workload_identity_service_account
namespace = var.namespace
project_id = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion modules/kuberay-operator/kuberay.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "helm_release" "kuberay-operator" {

module "kuberay-workload-identity" {
source = "terraform-google-modules/kubernetes-engine/google//modules/workload-identity"
version = "30.0.0"
version = "30.0.0" # Pinning to a previous version as current version (30.1.0) showed inconsitent behaviour with workload identity service accounts
use_existing_gcp_sa = !var.create_service_account
name = var.google_service_account
namespace = var.namespace
Expand Down

0 comments on commit 5055e60

Please sign in to comment.