ansible-template/hosts

23 lines
693 B
YAML

all: # This is were all begins
hosts: # This is were hosts are defined
walt: # This is the host named 'walt'
ansible_host: 192.168.1.31 # The ip address of the hosts 'walt'
ansible_user: root # User used to authenticate on the host 'walt'
# ansible_ssh_pass: ... # We do not use this
skyler:
ansible_host: 130.136.3.91 # The ip address of the hosts 'skyler'
ansible_user: debian # User used to authenticate on the host 'skyler'
marie:
ansible_host: 1.1.1.1
ansible_user: root
hank:
ansible_host: 130.136.3.92
ansible_user: fedora
vars: # This is were global vars are defined
hank_minerals: 4000
# vi: ft=yaml