-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
60 lines (50 loc) · 1.05 KB
/
variables.tf
File metadata and controls
60 lines (50 loc) · 1.05 KB
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
variable "enable_gpu" {
description = "Enable GPUs"
type = bool
default = false
}
variable "enable_neuron" {
description = "Enable Neuron"
type = bool
default = false
}
variable "enable_autoscaling" {
description = "Enable Autoscaling"
type = bool
default = false
}
variable "deploy_deepseek" {
description = "Deploy DeepSeek"
type = bool
default = false
}
variable "deploy_fooocus" {
description = "Deploy Fooocus"
type = bool
default = false
}
variable "enable_auto_mode_node_pool" {
description = "Enable EKS AutoMode NodePool"
type = bool
default = false
}
variable "owner" {
description = "owner of the cluster"
type = string
}
variable "project" {
description = "Project name"
type = string
}
variable "name" {
description = "Name of the resource"
type = string
}
variable "model_name" {
description = "the model name"
type = string
}
variable "max_model_len" {
description = "the max char length that the model can take"
type = string
}