-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
59 lines (48 loc) · 1.06 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
variable "cluster_name" {
type = string
default = "talos-cilium"
}
# Supported Talos versions (and therefore K8s versions) can be found here: https://github.com/siderolabs/talos/releases
variable "talos_version" {
type = string
default = "v1.7.4"
}
variable "kubernetes_version" {
type = string
default = "1.29.3"
}
variable "cilium_version" {
type = string
default = "1.15.5"
}
variable "cilium_install" {
description = "Install Cilium CNI ?"
type = bool
default = true
}
variable "pod_cidr" {
description = "CIDR of Pods"
type = string
default = "100.64.0.0/14"
}
variable "service_cidr" {
description = "CIDR of Pods"
type = string
default = "100.68.0.0/16"
}
variable "azs_letter" {
type = list(string)
default = ["a", "b", "c"]
}
variable "vpc_name" {
type = string
default = "vpc-talos"
}
variable "vpc_cidr" {
type = string
default = "10.0.0.0/16"
}
variable "public_subnets" {
type = list(string)
default = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
}