-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
58 lines (49 loc) · 1.63 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
variable "orchestrator" {
description = "The orchestrator to be used, either 'vertex', 'skypilot', 'airflow' or 'local'"
type = string
default = "vertex"
validation {
condition = contains(["vertex", "skypilot", "airflow", "local"], var.orchestrator)
error_message = "The orchestrator must be either 'vertex', 'skypilot', 'airflow' or 'local'"
}
}
variable "artifact_store_config" {
description = "Additional configuration for the artifact store"
type = map(string)
default = {}
}
variable "orchestrator_config" {
description = "Additional configuration for the orchestrator"
type = map(string)
default = {}
}
variable "step_operator_config" {
description = "Additional configuration for the step operator"
type = map(string)
default = {}
}
variable "container_registry_config" {
description = "Additional configuration for the container registry"
type = map(string)
default = {}
}
variable "image_builder_config" {
description = "Additional configuration for the image builder"
type = map(string)
default = {}
}
variable "experiment_tracker_config" {
description = "Additional configuration for the experiment tracker"
type = map(string)
default = {}
}
variable "zenml_stack_name" {
description = "A custom name for the ZenML stack that will be registered with the ZenML server"
type = string
default = ""
}
variable "zenml_stack_deployment" {
description = "The deployment type for the ZenML stack. Used as a label for the registered ZenML stack."
type = string
default = "terraform"
}