mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
This is the continuation of the NetBox Secretstore app. The original plugin is minimally maintained and has a lot of issues. This plugin is a complete rewrite of the original plugin. It is more generic and flexible than the original plugin. It is also regularly tested with the latest NetBox releases to ensure compatibility and stability. Features: * Store secrets in the database encrypted with a public key (RSA) * More generic and flexible than the original plugin (e.g. secrets can be assigned to any object in NetBox) * Secrets can be assigned to contacts to associate them with a secret (e.g. SSH key) * Updated user interface to make it easier to use and more intuitive to navigate * Regularly tested with the latest NetBox releases to ensure compatibility and stability MFH: 2023Q2 (in 3 weeks, to provide a migration path for security/py-netbox-secretstore, which is deprecated)
20 lines
515 B
Text
20 lines
515 B
Text
[
|
|
{ type: install
|
|
message: <<EOD
|
|
To enable the plugin please do the following steps:
|
|
|
|
1. Add/update the following line in the netbox configuration (usually
|
|
%%LOCALBASE%%/share/netbox/netbox/configuration.py):
|
|
|
|
PLUGINS = ['netbox_secrets']
|
|
|
|
2. Run NetBox migrations and collect static files:
|
|
|
|
# cd %%LOCALBASE%%/share/netbox
|
|
# python%%PYTHON_VER%% manage.py migrate
|
|
# python%%PYTHON_VER%% manage.py collectstatic --no-input
|
|
|
|
3. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.)
|
|
EOD
|
|
}
|
|
]
|