40 lines
979 B
YAML
40 lines
979 B
YAML
---
|
|
# Default variables for netbox-deploy role
|
|
netbox_install_dir: "/opt/netbox-docker"
|
|
netbox_repo_url: "https://github.com/netbox-community/netbox-docker.git"
|
|
netbox_repo_branch: "release"
|
|
netbox_repo_update: true
|
|
netbox_backup_dir: "/opt/netbox-backups"
|
|
netbox_data_dir: "/opt/netbox-data"
|
|
|
|
# NetBox configuration
|
|
netbox_superuser_name: "admin"
|
|
netbox_superuser_email: "admin@example.com"
|
|
netbox_superuser_password: "admin"
|
|
netbox_secret_key: ""
|
|
|
|
# Database configuration
|
|
netbox_db_host: "db"
|
|
netbox_db_name: "netbox"
|
|
netbox_db_user: "netbox"
|
|
netbox_db_password: "netbox"
|
|
netbox_db_port: "5432"
|
|
|
|
# Redis configuration
|
|
netbox_redis_host: "redis"
|
|
netbox_redis_port: "6379"
|
|
netbox_redis_password: ""
|
|
|
|
# NetBox settings
|
|
netbox_allowed_hosts: "localhost,127.0.0.1"
|
|
netbox_time_zone: "UTC"
|
|
netbox_language_code: "en"
|
|
netbox_debug: false
|
|
netbox_log_level: "INFO"
|
|
|
|
# Docker Compose overrides
|
|
netbox_docker_compose_overrides:
|
|
services:
|
|
netbox:
|
|
ports:
|
|
- "8000:8080"
|