-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.py
More file actions
41 lines (35 loc) · 1001 Bytes
/
plugins.py
File metadata and controls
41 lines (35 loc) · 1001 Bytes
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
# Add your plugins and plugin settings here.
# Of course uncomment this file out.
# To learn how to build images with your required plugins
# See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins
# PLUGINS = ["netbox_bgp"]
# PLUGINS_CONFIG = {
# "netbox_bgp": {
# ADD YOUR SETTINGS HERE
# }
# }
PLUGINS = [
"netbox_inventory",
"netbox_topology_views",
"netbox_qrcode",
"netbox_interface_synchronization",
"netbox_reorder_rack",
"netbox_ipcalculator",
]
PLUGINS_CONFIG = {
"netbox_inventory": {
"used_status_name": "used",
"stored_status_name": "stored",
"sync_hardware_serial_asset_tag": True,
},
"netbox_topology_views": {
"static_image_directory": "netbox_topology_views/img",
"allow_coordinates_saving": True,
"always_save_coordinates": True,
},
"netbox_qrcode": {
},
"netbox_interface_synchronization": {
"exclude_virtual_interfaces": True,
},
}