31 lines
627 B
YAML
31 lines
627 B
YAML
#!/usr/bin/ansible-playbook
|
|
# vim:ft=ansible:
|
|
all:
|
|
vars:
|
|
ansible_user: ubuntu
|
|
children:
|
|
home:
|
|
vars:
|
|
ansible_user: ansible
|
|
hosts:
|
|
dsk-cstm-0:
|
|
ansible_host: 172.23.100.1
|
|
lap-th-e560-0:
|
|
ansible_host: 172.23.100.2
|
|
9iron:
|
|
children:
|
|
webservers:
|
|
gameservers:
|
|
webservers:
|
|
hosts:
|
|
web1:
|
|
ansible_host: web1.9iron.club
|
|
fedi1:
|
|
ansible_host: fedi1.9iron.club
|
|
gameservers:
|
|
hosts:
|
|
game1:
|
|
ansible_host: game1.9iron.club
|
|
game2:
|
|
ansible_host: game2.9iron.club
|