blob: 3a5e3c4acd036c1c121db224990124f73eed0293 [file] [log] [blame]
Zack Williams048c6832020-08-02 21:14:35 -07001---
2# netbox defaults/main.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
Zack Williams38e28f92020-10-09 23:42:21 -07007# version and checksum of the .tar.gz distribution on github
8netbox_version: "2.9.10"
9netbox_version_checksum: "sha256:7499c5e9644120b821f13914862154551b94c20df1b3b9ae41c25cd7bf3d8ad4"
Zack Williams048c6832020-08-02 21:14:35 -070010
11# unix username/groupname
12netbox_username: "netbox"
13netbox_groupname: "netbox"
14netbox_comment: "NetBox IPAM and DCIM tool"
15
16netbox_dist_dir: "/opt/dist/netbox"
17netbox_working_dir: "/opt/netbox"
18netbox_media_dir: "/opt/netbox_media"
19
20# configuration within NetBox
21netbox_allowed_hosts:
22 - "127.0.0.1"
23
24# secret key: https://docs.djangoproject.com/en/3.0/ref/settings/#std:setting-SECRET_KEY
25netbox_secret_key: "notasecretkey1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
26
27# postgres db settings
28netbox_pg_db: "netbox"
29netbox_pg_db_username: "netboxuser"
30netbox_pg_db_password: "netboxpass"
31
32# Admin (superuser) account
33
34netbox_createsuperuser: true
35netbox_superuser_username: "netboxadmin"
36netbox_superuser_password: "netboxadminpass"
37netbox_superuser_email: "support@opennetworking.org"