-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
42 lines (37 loc) · 924 Bytes
/
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
variable "token" {
description = "Your Linode API Personal Access Token. (required)"
}
variable "k8s_version" {
description = "The Kubernetes version to use for this cluster. (required)"
default = "1.27"
}
variable "label" {
description = "The unique label to assign to this cluster. (required)"
default = "silvia-lke-cluster"
}
variable "region" {
description = "The region where your cluster will be located. (required)"
default = "us-east"
}
variable "tags" {
description = "Tags to apply to your cluster for organizational purposes. (optional)"
type = list(string)
default = ["testing"]
}
variable "pools" {
description = "The Node Pool specifications for the Kubernetes cluster. (required)"
type = list(object({
type = string
count = number
}))
default = [
{
type = "g6-standard-4"
count = 3
},
{
type = "g6-standard-8"
count = 3
}
]
}