File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ module "sample-jhub" {
68
68
# ---------------- HELM/JHUB VARIABLES -----------------------
69
69
jhub_helm_version = " 3.3.7"
70
70
helm_deploy_timeout = 4000
71
- helm_values_file = file ( var. helm_values_file )
71
+ helm_values_file = var. helm_values_file
72
72
73
73
# ---------------- CRONJOB VARIABLES -----------------------
74
74
scale_up_schedule = " 30 19 * * 4"
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ module "sample-jhub" {
69
69
# ---------------- HELM/JHUB VARIABLES -----------------------
70
70
jhub_helm_version = " 3.3.7"
71
71
helm_deploy_timeout = 1000
72
- helm_values_file = " ./sample-jhub/values.yaml "
72
+ helm_values_file = var . helm_values_file
73
73
74
74
# ---------------- CRONJOB VARIABLES -----------------------
75
75
scale_up_schedule = " 30 19 * * 4"
Original file line number Diff line number Diff line change @@ -10,12 +10,16 @@ variable "folder_id" {
10
10
type = string
11
11
}
12
12
13
+ variable "helm_values_file" {
14
+ type = string
15
+ }
16
+
13
17
variable "site_certificate_file" {
14
18
type = string
15
- default = " ./secrets/tls.cer"
19
+ default = " ./tests/ secrets/tls.cer"
16
20
}
17
21
18
22
variable "site_certificate_key_file" {
19
23
type = string
20
- default = " ./secrets/tls.key"
24
+ default = " ../tests /secrets/tls.key"
21
25
}
You can’t perform that action at this time.
0 commit comments