--- # Host-specific configuration for netbox.vntx.net # Ansible connection settings ansible_user: graham ansible_host: 204.110.191.243 ansible_python_interpreter: /usr/bin/python3 ansible_ssh_private_key_file: /Users/graham/.ssh/id_ed25519 ansible_ssh_common_args: '-o StrictHostKeyChecking=accept-new' # Override defaults for NetBox installation netbox_port: 8001 netbox_secret_key: "{{ vault_netbox_secret_key }}" netbox_db_password: "{{ vault_netbox_db_password }}" netbox_admin_password: "{{ vault_netbox_admin_password }}" netbox_admin_email: "admin@vntx.net" # Set allowed hosts for this installation (space-separated string) netbox_allowed_hosts: "netbox.vntx.net localhost 127.0.0.1" # Email configuration for VNTX environment netbox_email_from: "netbox@vntx.net" # Time zone netbox_timezone: "America/Chicago" # Enable metrics for monitoring netbox_metrics_enabled: true # Custom branding if desired # netbox_branding_title: "VNTX NetBox" # netbox_branding_url: "https://vntx.net"