/
/
/
This repo is destined for my server automations and setup.
1
2[all:vars]
3ansible_user=ansible
4ansible_ssh_private_key_file=~/.ssh/id_ed25519
5ansible_python_interpreter=/usr/bin/python3
6ansible_ssh_common_args='-o StrictHostKeyChecking=no'
7environment=homelab
8
9[homelab]
10runner ansible_host=runner.home server_type=compute
11homeassistant ansible_host=homeassistant.home server_type=services
12connectivity ansible_host=connectivity.home server_type=edge
13storage ansible_host=storage.home server_type=storage
14workstation ansible_host=workstation.home server_type=workstation
15hifi-node-kitchen ansible_host=hifi-node-kitchen.home server_type=hifi_node
16hifi-node-dining ansible_host=hifi-node-dining.home server_type=hifi_node
17ground-floor-edge ansible_host=ground-floor-edge.home server_type=edge
18
19[compute_servers]
20runner
21homeassistant
22
23[edge_devices]
24connectivity
25hifi-node-kitchen
26hifi-node-dining
27ground-floor-edge
28
29[hifi_nodes]
30hifi-node-kitchen
31hifi-node-dining
32
33[homeassistant_servers]
34homeassistant
35
36[nas_servers]
37storage
38
39[connectivity_servers]
40connectivity
41
42[storage_servers]
43storage
44
45[runner_servers]
46runner
47