forked from jeremyschulman/netcad-demo-clabs1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netcad.toml
80 lines (62 loc) · 2 KB
/
netcad.toml
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
# -----------------------------------------------------------------------------
#
# User Design
#
# -----------------------------------------------------------------------------
[[design]]
name = "b1.f1"
description = "Building 1, Floor 1"
package = "netcad_demo_clabs1.b1_f1"
[design.config]
net_id = 1
building = 1
floor = 1
[[design]]
name = "b1.f2"
description = "Building 1, Floor 2"
package = "netcad_demo_clabs1.b1_f2"
[design.config]
net_id = 2
building = 1
floor = 2
[[design]]
name = "b2.f9"
description = "Building 2, Floor 9"
package = "netcad_demo_clabs1.b1_f2"
[design.config]
net_id = 3
building = 2
floor = 9
# -----------------------------------------------------------------------------
#
# netcad plugins
#
# -----------------------------------------------------------------------------
[[netcad.plugins]]
name = "ContainerLabs"
package = "netcad_demo_clabs1.plugins.containerlabs"
# -----------------------------------------------------------------------------
#
# netcam plugins
#
# -----------------------------------------------------------------------------
[[netcam.plugins]]
name = "Arista EOS"
supports = ["eos"]
package = "netcam_aioeos"
[netcam.plugins.config]
# the EOS credentials will be sourced from these enviornment variables.
# so these need to be exported before use, or an error is reported.
env.username = "NETWORK_USERNAME"
env.password = "NETWORK_PASSWORD"
# -----------------------------------------------------------------------------
#
# origin plugins
#
# -----------------------------------------------------------------------------
[origin.netbox]
url = "http://localhost:8000"
token = "$NETBOX_TOKEN"
package = "netcad.netbox:netbox"
[get]
device-types = "netbox"