| 12345678910111213141516171819 |
- ---
- # inventory/hosts.yml — host groups and generic default connection details
- # Override ansible_host and ansible_user for your environment in inventory/local.yml (gitignored)
- all:
- children:
- ai_servers:
- hosts:
- ai_server:
- ansible_host: 192.168.1.100
- nginx_proxies:
- hosts:
- nginx_proxy:
- ansible_host: 192.168.1.30
- coredns_hosts:
- hosts:
- coredns_host:
- ansible_host: 192.168.1.29
|