feat(netbox): add plugins configuration file
This commit is contained in:
47
images/netbox/plugins.py
Normal file
47
images/netbox/plugins.py
Normal file
@@ -0,0 +1,47 @@
|
||||
# =============================================================================
|
||||
# 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_secrets",
|
||||
"netbox_topology_views",
|
||||
# "netbox_bgp",
|
||||
# "netbox_documents",
|
||||
# "netbox_acls",
|
||||
# "netbox_qrcode",
|
||||
# "netbox_proxbox",
|
||||
]
|
||||
|
||||
# Configuration des plugins
|
||||
PLUGINS_CONFIG = {
|
||||
"netbox_secrets": {
|
||||
# Configuration par défaut, personnalise si nécessaire
|
||||
# "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,
|
||||
},
|
||||
# "netbox_bgp": {
|
||||
# # Ajoute ta configuration ici
|
||||
# },
|
||||
# "netbox_proxbox": {
|
||||
# "proxmox": [
|
||||
# {
|
||||
# "domain": "proxmox.example.com",
|
||||
# "http_port": 8006,
|
||||
# "user": "root@pam",
|
||||
# "password": "your-password",
|
||||
# "ssl": True,
|
||||
# "node": "pve",
|
||||
# }
|
||||
# ],
|
||||
# },
|
||||
}
|
||||
Reference in New Issue
Block a user