26 lines
739 B
Python
26 lines
739 B
Python
# =============================================================================
|
|
# NetBox Plugins Configuration
|
|
# =============================================================================
|
|
# Mount this file to /etc/netbox/config/plugins.py
|
|
#
|
|
# IMPORTANT: netbox_branching MUST be the last plugin in the list
|
|
# =============================================================================
|
|
|
|
PLUGINS = [
|
|
'netbox_bgp',
|
|
'netbox_secrets',
|
|
'netbox_topology_views',
|
|
# 'netbox_documents',
|
|
# 'netbox_acls',
|
|
# 'netbox_qrcode',
|
|
# 'netbox_proxbox',
|
|
'netbox_branching', # MUST be last
|
|
]
|
|
|
|
PLUGINS_CONFIG = {
|
|
'netbox_branching': {},
|
|
'netbox_bgp': {},
|
|
'netbox_secrets': {},
|
|
'netbox_topology_views': {},
|
|
}
|