16 lines
572 B
YAML
16 lines
572 B
YAML
# NetBox Deployment Inventory
|
|
# Example inventory file for NetBox deployment
|
|
|
|
[netbox]
|
|
# Add your NetBox server(s) here
|
|
# Example:
|
|
# netbox-server ansible_host=192.168.1.100 ansible_user=ubuntu
|
|
# netbox-server-2 ansible_host=192.168.1.101 ansible_user=ubuntu
|
|
|
|
# Uncomment and modify the following line to add your server:
|
|
# netbox-server ansible_host=YOUR_SERVER_IP ansible_user=YOUR_USERNAME
|
|
|
|
[netbox:vars]
|
|
# Group variables can be defined here or in group_vars/netbox.yml
|
|
ansible_ssh_common_args='-o StrictHostKeyChecking=no'
|
|
ansible_python_interpreter=/usr/bin/python3
|