blob: 0c7c469c9da9d887d8f036243da5377789e8f462 [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
Zack Williams3cfdc002021-09-19 13:34:13 -07008
9# for upgrades from 2.x to 3.x, must upgrade to 2.11.x first for migrations
10# netbox_version: "2.11.12"
11# netbox_version_checksum: >-
12# sha256:c51d8d386ead7523f7513b41d03500bf464fecc4129ccf1f74569a3e8d609684
13
14netbox_version: "3.1.7"
15netbox_version_checksum: "sha256:af9ff46dd6fd0026d2238a7bffd4a8b6215035e1a76f2a542ac1cf5b4b627aaf"
Zack Williams048c6832020-08-02 21:14:35 -070016
17# unix username/groupname
18netbox_username: "netbox"
19netbox_groupname: "netbox"
20netbox_comment: "NetBox IPAM and DCIM tool"
21
22netbox_dist_dir: "/opt/dist/netbox"
23netbox_working_dir: "/opt/netbox"
24netbox_media_dir: "/opt/netbox_media"
25
26# configuration within NetBox
27netbox_allowed_hosts:
28 - "127.0.0.1"
29
30# secret key: https://docs.djangoproject.com/en/3.0/ref/settings/#std:setting-SECRET_KEY
31netbox_secret_key: "notasecretkey1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
32
33# postgres db settings
34netbox_pg_db: "netbox"
35netbox_pg_db_username: "netboxuser"
36netbox_pg_db_password: "netboxpass"
37
38# Admin (superuser) account
39
40netbox_createsuperuser: true
41netbox_superuser_username: "netboxadmin"
42netbox_superuser_password: "netboxadminpass"
43netbox_superuser_email: "support@opennetworking.org"