NetBox Tip! Prevent direct changes to the main branch when using the NetBox Changes plugin. Enable protect_main to ensure all changes are made through branches and follow an approval workflow.
Here's an example configuration:
# ./configuration.py
PLUGINS_CONFIG = {
"netbox_changes": {
"protect_main": True,
},
}
