0
0

transformed hosts file into yaml file

This commit is contained in:
2023-01-19 21:23:39 +01:00
parent 0be62a2105
commit c06d2e9197

27
hosts.yml Normal file
View File

@@ -0,0 +1,27 @@
# This is the default ansible 'hosts' file.
#
# It should live in your Git repository, and there should be a link from /etc/ansible/hosts:
# /etc/ansible/hosts -> /path/to/myAnsibleProject/hosts
#
# - Comments begin with the '#' character
# - Blank lines are ignored
# - Groups of hosts are delimited by [header] elements
# - You can enter hostnames or ip addresses
# - A hostname/ip can be a member of multiple groups
anygroup:
hosts:
server1:
ansible_host: 192.168.0.1
server2:
ansible_host: 192.168.0.2
server3:
ansible_host: 192.168.0.3
server4:
ansible_host: 192.168.0.4
# Add your own groups here. Hosts can be added to multiple groups like so:
# anothergroup:
# server[1:3]:
# anotherserver:
# ansible_host: 192.168.0.10