-
Notifications
You must be signed in to change notification settings - Fork 10
/
variables.tf
executable file
·62 lines (51 loc) · 1.39 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
variable "hcloud_token" {
default = ""
description = "Hetzner Cloud API token"
}
# Master node vars
variable "master_name" {
default = "master"
description = "Name of the master node"
}
variable "master_server_type" {
default = "cpx11"
description = "Server type of the master node"
}
variable "master_location" {
default = "nbg1"
description = "Location of the master node"
}
# Worker nodes vars (docker)
variable "worker_nodes_count" {
default = 3
description = "Number of worker nodes (docker)"
}
variable "worker_server_type" {
default = "cx11"
description = "Server type of the worker nodes (docker)"
}
variable "worker_location" {
default = "nbg1"
description = "Location of the worker nodes (docker)"
}
# Worker nodes vars (containerd)
variable "worker_containerd_server_type" {
default = "cx11"
description = "Server type of the worker nodes (containerd)"
}
variable "worker_containerd_location" {
default = "nbg1"
description = "Location of the worker nodes (containerd)"
}
variable "worker_nodes_containerd_count" {
default = 0
description = "Number of worker nodes (containerd)"
}
variable "image_id" {
default = 89738474
description = "Image of the node"
}
variable "image_id_containerd" {
default = 89738685
description = "Image of the node"
}