This repository was archived by the owner on Mar 28, 2025. It is now read-only.
generated from UCL-ARC/terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
87 lines (70 loc) · 1.76 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
variable "vm_count" {
type = number
description = "Number of instances of the VM"
}
variable "vcpu" {
type = number
description = "Number of CPUs for the VM"
}
variable "ram_gb" {
type = string
description = "Amount of memory for the VM"
}
variable "os_disk_gb" {
type = string
description = "Size of the VM's primary disk"
}
variable "vm_prefix" {
type = string
description = "Prefix applied to the server resources"
}
variable "namespace" {
type = string
description = "Name of the SSRC namespace"
}
variable "network_name" {
type = string
description = "Name of the SSRC network"
}
variable "public_key_openssh" {
type = list(string)
description = "Public SSH key installed on the VM"
}
variable "condenser_ingress_isEnabled" {
type = bool
description = "Enable web access to the server"
}
variable "condenser_ingress_test_hostname" {
type = string
description = "Part of the URL for the web application"
}
variable "aad_client_id" {
type = string
}
variable "aad_client_secret" {
type = string
sensitive = true
}
variable "aad_tenant_id" {
type = string
}
variable "z2jupyterhub_version" {
type = string
description = "Version of the z2jupyterhub helm chart"
}
variable "k3s_version" {
type = string
description = "Version of k3s"
}
variable "calico_version" {
type = string
description = "Version of calico"
}
variable "jupyter_image" {
type = string
description = "Name of Jupyter notebook container image (see https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html)"
}
variable "jupyter_image_version" {
type = string
description = "Docker tag for Jupyter notebook container image"
}