From f7e9c046c2244efc6d4772c5d5775f58fe0f4717 Mon Sep 17 00:00:00 2001 From: Maksym Buz Date: Sun, 24 Aug 2025 12:57:47 +0200 Subject: [PATCH] Added example of inventory --- inventory/example_hosts.ini | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 inventory/example_hosts.ini diff --git a/inventory/example_hosts.ini b/inventory/example_hosts.ini new file mode 100644 index 0000000..01d6321 --- /dev/null +++ b/inventory/example_hosts.ini @@ -0,0 +1,28 @@ +[proxmox] +proxmox-host ansible_host=x.x.x.x + +[docker] +docker-apps ansible_host=x.x.x.x +docker-cloud ansible_host=x.x.x.x + +#[truenas] +#truenas ansible_host=x.x.x.x + +[raspberry_pi] +raspberry-pi ansible_host=x.x.x.x + +[lxc] +ansible ansible_host=x.x.x.x +zabbix-proxy ansible_host=x.x.x.x +pi-hole ansible_host=x.x.x.x +[lxc:vars] +ansible_user=root + +[proxmox_backup] +proxmox-backup ansible_host=x.x.x.x + +# This is a group of groups. It includes all hosts in the 'docker' and 'raspberry_pi' groups. +[ubuntu:children] +docker +raspberry_pi +lxc