-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
vars-cluster.tf
40 lines (34 loc) · 921 Bytes
/
vars-cluster.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
variable "cluster_name" {
description = "Name of the Talos Kubernetes cluster"
type = string
default = "talos-cluster"
}
variable "cluster_vip" {
description = "Virtual IP of the Talos Kubernetes cluster"
type = string
}
variable "cluster_domain" {
description = "Domain name of the Talos Kubernetes cluster"
type = string
default = "talos-cluster.local"
}
variable "cluster_endpoint_port" {
description = "Port of the Kubernetes API endpoint"
type = number
default = 6443
}
variable "control_plane_first_ip" {
description = "First ip of a control-plane"
type = number
default = 111
}
variable "worker_node_first_ip" {
description = "First ip of a worker node"
type = number
default = 121
}
variable "install_disk_device" {
description = "Disk to install Talos on"
type = string
default = "/dev/vda"
}