Files
iac-talos-cluster/vars-network.tf
2023-11-08 19:23:44 +01:00

35 lines
714 B
HCL

variable "network_ip_prefix" {
description = "Network IP network prefix"
type = number
default = 24
}
variable "network_cidr" {
description = "Network address in CIDR notation"
type = string
default = "10.0.0.1/24"
}
variable "network_gateway" {
description = "Gateway of the network"
type = string
default = "10.0.0.1"
}
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
}