Some checks failed
Build and Push Docker Images / build (push) Failing after 4s
43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
# =============================================================================
|
|
# NetBox Plugins Configuration
|
|
# =============================================================================
|
|
# Ce fichier est copié dans /etc/netbox/config/plugins.py
|
|
# Il active et configure les plugins installés
|
|
# =============================================================================
|
|
|
|
# Liste des plugins activés
|
|
# Doit correspondre aux packages installés dans plugin_requirements.txt
|
|
PLUGINS = [
|
|
"netbox_branching",
|
|
"netbox_bgp",
|
|
"netbox_secrets",
|
|
"netbox_topology_views",
|
|
# "netbox_documents",
|
|
# "netbox_acls",
|
|
# "netbox_qrcode",
|
|
# "netbox_proxbox",
|
|
]
|
|
|
|
# Configuration des plugins
|
|
PLUGINS_CONFIG = {
|
|
"netbox_branching": {
|
|
# Configuration par défaut
|
|
# Voir: https://github.com/netboxlabs/netbox-branching#configuration
|
|
},
|
|
"netbox_bgp": {
|
|
# Configuration par défaut
|
|
# "top_level_menu": True, # Ajoute un menu BGP au niveau supérieur
|
|
# "asdot": False, # Utilise la notation ASPLAIN par défaut
|
|
},
|
|
"netbox_secrets": {
|
|
# Configuration par défaut
|
|
# "public_key_size": 4096,
|
|
},
|
|
"netbox_topology_views": {
|
|
# Configuration par défaut
|
|
# "static_image_directory": "netbox_topology_views/img",
|
|
# "allow_coordinates_saving": True,
|
|
# "always_save_coordinates": False,
|
|
},
|
|
}
|