/
/
/
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
15
16[compute_servers]
17runner
18homeassistant
19
20[edge_devices]
21connectivity
22
23[homeassistant_servers]
24homeassistant
25
26[nas_servers]
27storage
28
29[connectivity_servers]
30connectivity
31
32[storage_servers]
33storage
34
35[runner_servers]
36runner
37