-
Notifications
You must be signed in to change notification settings - Fork 37
/
variables.tf
executable file
·56 lines (43 loc) · 1.22 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
variable "hcloud_token" {
}
variable "master_count" {
}
variable "master_image" {
description = "Predefined Image that will be used to spin up the machines (Currently supported: ubuntu-20.04, ubuntu-18.04)"
default = "ubuntu-20.04"
}
variable "master_type" {
description = "For more types have a look at https://www.hetzner.de/cloud"
default = "cx21"
}
variable "node_count" {
}
variable "node_image" {
description = "Predefined Image that will be used to spin up the machines (Currently supported: ubuntu-20.04, ubuntu-18.04)"
default = "ubuntu-20.04"
}
variable "node_type" {
description = "For more types have a look at https://www.hetzner.de/cloud"
default = "cx21"
}
variable "ssh_private_key" {
description = "Private Key to access the machines"
default = "~/.ssh/id_ed25519"
}
variable "ssh_public_key" {
description = "Public Key to authorized the access for the machines"
default = "~/.ssh/id_ed25519.pub"
}
variable "docker_version" {
default = "19.03"
}
variable "kubernetes_version" {
default = "1.18.6"
}
variable "feature_gates" {
description = "Add Feature Gates e.g. 'DynamicKubeletConfig=true'"
default = ""
}
variable "calico_enabled" {
default = false
}