-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
43 lines (37 loc) · 1.01 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
variable "netbox_server" {
type = string
default = "https://netbox.freifunk-duesseldorf.de"
}
variable "netbox_api_token" {
type = string
sensitive = true
}
variable "prefix_ipv4" {
type = string
description = "Network prefix (IPv4, CIDR notation, e.g. '10.1.0.0/16')"
default = "45.151.166.0/24"
}
variable "prefix_ipv6" {
type = string
description = "Network prefix (IPv6, CIDR notation, e.g. 'fd00:1::/48')"
default = "2001:678:b7c::/48"
}
variable "core_router_names" {
type = set(string)
description = "Name of the core routers to connect to (list of strings, default empty)"
default = [
"CR3",
"CR4",
"CR5",
]
}
variable "tunnel_prefix_ipv4" {
type = string
description = "Tunnel prefix (IPv4, CIDR notation, e.g. '10.1.0.0/16')"
default = "10.129.0.0/16"
}
variable "tunnel_prefix_ipv6" {
type = string
description = "Tunnel prefix (IPv6, CIDR notation, e.g. 'fd00:1::/48')"
default = "fdcb:aa6b:5532::/48"
}