From 5091aaa52cf3eefb64269f85469e460a2564cfe6 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 --- Ansible/inventory/example_hosts.ini | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Ansible/inventory/example_hosts.ini diff --git a/Ansible/inventory/example_hosts.ini b/Ansible/inventory/example_hosts.ini new file mode 100644 index 0000000..01d6321 --- /dev/null +++ b/Ansible/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