| --- |
| # 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 |
| |
| # for upgrades from 2.x to 3.x, must upgrade to 2.11.x first for migrations |
| # netbox_version: "2.11.12" |
| # netbox_version_checksum: >- |
| # sha256:c51d8d386ead7523f7513b41d03500bf464fecc4129ccf1f74569a3e8d609684 |
| |
| netbox_version: "3.1.7" |
| netbox_version_checksum: "sha256:af9ff46dd6fd0026d2238a7bffd4a8b6215035e1a76f2a542ac1cf5b4b627aaf" |
| |
| # 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" |