We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0f7c6 commit b177320Copy full SHA for b177320
tests/sample-jhub-nfs/main.tf
@@ -68,7 +68,7 @@ module "sample-jhub" {
68
# ---------------- HELM/JHUB VARIABLES -----------------------
69
jhub_helm_version = "3.3.7"
70
helm_deploy_timeout = 4000
71
- helm_values_file = "./values.yaml"
+ helm_values_file = var.helm_values_file
72
73
# ---------------- CRONJOB VARIABLES -----------------------
74
scale_up_schedule = "30 19 * * 4"
tests/sample-jhub-nfs/variables.tf
@@ -10,6 +10,10 @@ variable "folder_id" {
10
type = string
11
}
12
13
+variable "helm_values_file" {
14
+ type = string
15
+}
16
+
17
variable "site_certificate_file" {
18
19
default = "./secrets/tls.cer"
0 commit comments