# Ansible Inventory File
# Define your servers here

[servers]
server1.example.com ansible_host=192.168.1.10
server2.example.com ansible_host=192.168.1.11

[servers:vars]
ansible_user=ubuntu
ansible_ssh_private_key_file=~/.ssh/id_rsa
ansible_python_interpreter=/usr/bin/python3

# Environment-specific groups
[production]
server1.example.com

[staging]
server2.example.com
