-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
72 lines (58 loc) · 1.49 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
64
65
66
67
68
69
70
71
72
variable cluster_name {
description = "Name of cluster"
default = "rke"
}
variable key_pair {
description = "Name of SSH keypair"
default = ""
}
variable controllers_flavor_name {
description = "Flavor of instance to be used for master nodes"
default = "hotdog"
}
variable controllers_tags {
description = "Role tags for control nodes"
default = ["controlplane", "etcd"]
}
variable workers_flavor_name {
description = "Flavor of instance to be used for worker nodes"
default = "bratwurst"
}
variable workers_tags {
description = "Role tags for control nodes"
default = ["worker"]
}
variable kubernetes_version {
description = "Version of Kubernetes to deploy"
default = "v1.19.2-rancher1-1"
}
variable image_name {
description = "Name of image to be used"
default = "Ubuntu 20.04 (20200714)"
}
variable external_network_id {
description = "UUID of external network"
default = ""
}
variable floating_ip_pool {
description = "Name of network from which floating IP addresses should be assigned"
default = "internet"
}
variable num_controllers {
default = "1"
}
variable num_workers {
default = "1"
}
variable username {
description = "Username to be used when SSH'ing into instances"
default = "ubuntu"
}
variable os_password {
description = "OpenStack password"
default = ""
}
variable os_auth_url {
description = "OpenStack authentication service URL"
default = "https://compute.sausage.cloud:5000/v3"
}