Skip to content

Commit

Permalink
chore: setting dependency_update true for voucher (#6567)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhart1o1 authored May 23, 2024
1 parent 6c9618d commit c7fc3ed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ci/testflight/voucher/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ resource "kubernetes_secret" "voucher" {
"next-auth-secret" : "dummy123"
"client-secret" : "dummy"
"escrow-api-key" : "dummy"
pg-user-pw : random_password.postgresql.result
pg-con : "postgres://voucher:${random_password.postgresql.result}@voucher-postgresql:5432/voucher"
"pg-user-pw" : random_password.postgresql.result
"pg-con" : "postgres://voucher:${random_password.postgresql.result}@voucher-postgresql:5432/voucher"
}
}

Expand All @@ -55,6 +55,10 @@ resource "helm_release" "voucher" {
values = [
file("${path.module}/testflight-values.yml")
]

depends_on = [kubernetes_secret.voucher]

dependency_update = true
}

data "google_container_cluster" "primary" {
Expand Down

0 comments on commit c7fc3ed

Please sign in to comment.