blob: 0b35e192bfe373b0dbc6f4f0869f2e4f6f8b267f [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
7netbox_version: "2.9.3"
8netbox_version_checksum: "sha256:c9e47993b265ccdb0b88f27c9b023e8adee003d93d478f85c16183baee5586d4"
9
10# unix username/groupname
11netbox_username: "netbox"
12netbox_groupname: "netbox"
13netbox_comment: "NetBox IPAM and DCIM tool"
14
15netbox_dist_dir: "/opt/dist/netbox"
16netbox_working_dir: "/opt/netbox"
17netbox_media_dir: "/opt/netbox_media"
18
19# configuration within NetBox
20netbox_allowed_hosts:
21 - "127.0.0.1"
22
23# secret key: https://docs.djangoproject.com/en/3.0/ref/settings/#std:setting-SECRET_KEY
24netbox_secret_key: "notasecretkey1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
25
26# postgres db settings
27netbox_pg_db: "netbox"
28netbox_pg_db_username: "netboxuser"
29netbox_pg_db_password: "netboxpass"
30
31# Admin (superuser) account
32
33netbox_createsuperuser: true
34netbox_superuser_username: "netboxadmin"
35netbox_superuser_password: "netboxadminpass"
36netbox_superuser_email: "support@opennetworking.org"