-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
93 lines (83 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
variable "ndfc" {
type = object({
url = string
platform = string
})
}
variable "nd_username" {
type = string
sensitive = true
}
variable "nd_password" {
type = string
sensitive = true
}
variable "fabric_name" {
type = string
}
variable "inventory" {
type = map(any)
}
variable "loopbacks" {
type = list(object({
switch_id = string
loopback_id = number
loopback_ipv4 = string
vrf = string
route_tag = number
}))
}
variable "vpcs" {
type = list(object({
vpc_id = number
switch1_id = string
switch2_id = string
mode = string
bpdu_guard_flag = string
mtu = string
peer1_members = list(string)
peer2_members = list(string)
}))
}
variable "vrfs" {
type = list(object({
name = string
vlan_id = number
segment_id = number
description = string
attachments = list(object({
switch_id = string
}))
}))
}
variable "networks" {
type = list(object({
name = string
vlan_id = number
network_id = number
vrf_name = string
ipv4_gateway = string
description = string
attachments = list(object({
switch_id = string
switch_ports = list(string)
}))
}))
}
# bonus
variable "templates" {
type = list(object({
name = string
description = string
file = string
}))
}
variable "policies" {
type = list(object({
switch_id = string
template_name = string
description = string
priority = number
props = map(any)
}))
}