-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
47 lines (38 loc) · 859 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
43
44
45
46
variable "redhat_version" {
default = "7"
description = "RedHat Version"
}
variable "docker_version" {
default = "20.10.6-3.el7"
description = "Docker Version"
}
variable "k8s_version" {
default = "1.21.0-0.x86_64"
description = "kubernetes version"
}
variable "master" {
default = "bandol"
description = "Hostname master node"
}
variable "nodes" {
default = 2
description = "Number of Worker"
}
variable "worker" {
type = list
default = ["cabernet1", "sauvignon"]
description = "Hostname for worker node"
}
variable "clustername" {
default = "epc-eco"
description = "K8S Cluster name"
}
variable "user" {
default = "root"
description = "Default User for ssh connexion"
}
variable "private_key" {
type = string
default = "/root/.ssh/id_rsa"
description = "The path to your private key"
}