-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
59 lines (50 loc) · 1.64 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
variable "location" {
description = "The Azure region where resources will be created"
# Make a choice from the list of Azure regions
type = string
default = "westus"
}
variable "orchestrator" {
description = "The orchestrator to be used, either 'skypilot', 'azureml' or 'local'."
type = string
default = "azureml"
validation {
condition = contains(["skypilot", "azureml", "local"], var.orchestrator)
error_message = "If set, the orchestrator must be either 'skypilot', 'azureml' or 'local'."
}
}
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"
}
variable "storage_account_tier" {
description = "The tier for the Azure storage account"
type = string
default = "Standard"
}
variable "storage_account_replication_type" {
description = "The replication type for the Azure storage account"
type = string
default = "LRS"
}
variable "container_registry_sku" {
description = "The SKU for the Azure container registry"
type = string
default = "Basic"
}
variable "azureml_workspace_sku" {
description = "The SKU for the Azure Machine Learning workspace"
type = string
default = "Basic"
}
variable "azureml_key_value_sku" {
description = "The SKU for the Azure Machine Learning key vault"
type = string
default = "standard"
}