blob: 3a5e3c4acd036c1c121db224990124f73eed0293 [file] [log] [blame]
---
# netbox defaults/main.yml
#
# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
# SPDX-License-Identifier: Apache-2.0
# version and checksum of the .tar.gz distribution on github
netbox_version: "2.9.10"
netbox_version_checksum: "sha256:7499c5e9644120b821f13914862154551b94c20df1b3b9ae41c25cd7bf3d8ad4"
# unix username/groupname
netbox_username: "netbox"
netbox_groupname: "netbox"
netbox_comment: "NetBox IPAM and DCIM tool"
netbox_dist_dir: "/opt/dist/netbox"
netbox_working_dir: "/opt/netbox"
netbox_media_dir: "/opt/netbox_media"
# configuration within NetBox
netbox_allowed_hosts:
- "127.0.0.1"
# secret key: https://docs.djangoproject.com/en/3.0/ref/settings/#std:setting-SECRET_KEY
netbox_secret_key: "notasecretkey1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
# postgres db settings
netbox_pg_db: "netbox"
netbox_pg_db_username: "netboxuser"
netbox_pg_db_password: "netboxpass"
# Admin (superuser) account
netbox_createsuperuser: true
netbox_superuser_username: "netboxadmin"
netbox_superuser_password: "netboxadminpass"
netbox_superuser_email: "support@opennetworking.org"