forked from solidnerd/terraform-k8s-hcloud
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvariables.tf
executable file
·63 lines (49 loc) · 1.32 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
63
variable "hcloud_token" {
}
variable "location" {
default = "hel1"
}
variable "cluster_name" {
}
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 = "cpx21"
}
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 = "cpx21"
}
variable "ssh_private_key" {
description = "Private Key to access the machines"
default = "~/.ssh/id_ed25519"
}
variable "ssh_port" {
description = "SSH default port"
default = "666"
}
variable "ssh_public_key" {
description = "Public Key to authorized the access for the machines"
default = "~/.ssh/id_ed25519.pub"
}
variable "docker_version" {
default = "20.10"
}
variable "kubernetes_version" {
default = "1.20.0"
}
variable "feature_gates" {
description = "Add Feature Gates e.g. 'DynamicKubeletConfig=true'"
default = ""
}