-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars-network.tf
40 lines (34 loc) · 866 Bytes
/
vars-network.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 "talos_network_ip_prefix" {
description = "Network IP network prefix"
type = number
default = 24
}
variable "talos_network_cidr" {
description = "Network address in CIDR notation"
type = string
default = "192.168.1.0/24"
}
variable "talos_network_gateway" {
description = "Gateway of the network"
type = string
default = "192.168.1.1"
}
variable "talos_network_dhcp" {
description = "If dhcp is enabled and configured"
type = bool
default = true
}
variable "router_ip" {
description = "IP address of the router, uses network_gateway as default value"
type = string
default = ""
}
variable "router_asn" {
description = "Router ASN for use with Cilium BGP"
type = number
default = 64501
}
variable "cilium_asn" {
type = number
default = 64500
}