-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (40 loc) · 1.08 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
variable "device_role" {
type = string
description = "Role of devices to use"
default = "Router"
}
variable "device_tag" {
type = string
description = "Tag to filter devices by"
default = "remote-site-router"
}
variable "sites_prefix_v4" {
type = string
description = "Prefix (v4) to create site prefixes in"
default = "45.151.166.0/24"
}
variable "sites_prefix_v6" {
type = string
description = "Prefix (v6) to create site prefixes in"
default = "2001:678:b7c::/48"
}
variable "tunnels_prefix_v4" {
type = string
description = "Prefix (v4) to create tunnel prefixes in"
default = "10.129.0.0/16"
}
variable "tunnels_prefix_v6" {
type = string
description = "Prefix (v6) to create tunnel prefixes in"
default = "fdcb:aa6b:5532::/48"
}
variable "core_router_tag" {
type = string
description = "Tag to use for finding core routers"
default = "core-router"
}
variable "tenant_id" {
type = number
description = "NetBox tenant ID to use for all resources"
default = 2
}