Skip to content

Commit b177320

Browse files
committed
fix values.yaml path in sample-jhub
1 parent 2b0f7c6 commit b177320

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tests/sample-jhub-nfs/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ module "sample-jhub" {
6868
# ---------------- HELM/JHUB VARIABLES -----------------------
6969
jhub_helm_version = "3.3.7"
7070
helm_deploy_timeout = 4000
71-
helm_values_file = "./values.yaml"
71+
helm_values_file = var.helm_values_file
7272

7373
# ---------------- CRONJOB VARIABLES -----------------------
7474
scale_up_schedule = "30 19 * * 4"

tests/sample-jhub-nfs/variables.tf

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ variable "folder_id" {
1010
type = string
1111
}
1212

13+
variable "helm_values_file" {
14+
type = string
15+
}
16+
1317
variable "site_certificate_file" {
1418
type = string
1519
default = "./secrets/tls.cer"

0 commit comments

Comments
 (0)