Ansible: organize your hosts in an inventory file in YAML format

In this tutorial, I’ll walk you through how to organize your hosts into an inventory file in YAML format instead of the original file format with Ansible.

If you are new to Ansible, I invite you to read this tutorial first: Ansible: installation, configuration and use with Windows and Linux

To start here is our inventory file, to make it “simple”, the file will only consist of Windows servers.

In the file, we have a windows group which contains the list of servers then the configuration of this group before the connection information to the windows:var servers.

In daily maintenance, I want to use 2 playbooks:

To respond to this solution, I will create a new inventory file in YAML format in which we will create a subgroup (child) which will contain the IIS servers.

First, we will transpose the inventory file identically to the YAML format.

Here is the inventory file:

In the file, we created a first group: all, which contains all the hosts, by default when calling this inventory file, the all group is called, the vars group is aligned with the hosts part of the all .

Now, we will create a child group (iisservers) of all, which will contain the two IIS servers.

Here is the file :

The iisservers child group is declared and we can see that this contains the declaration of the two IIS servers which is found in all

If you looked at the two playbooks at the start of this tutorial, they are both applied to all groups.

For updates here is the command:

ansible-playbook /path/file/playbook-wu-install-update.yml -i /path/file/hosts.yml -f 10

Here the playbook is called in the “classic” way by indicating the file path, the -i parameter allows you to indicate the inventory file and the optional -f parameter allows you to indicate the number of simultaneous executions (Here it is of no interest).

Now, we will move on to the playbook for the IIS servers, we will also add a parameter -l (limit) which will take the name of the group (iisservers) as a value.

Which gives us :

ansible-playbook /path/file/playbook-iis-logrotate.yml -i /path/file/hosts.yml -l iisservers -f 10

The -l parameter can also take a host, if you want to apply the playbook to a single host, which can be useful if you are using a playbook to schedule server restarts.

To finish this tutorial, it is possible, if necessary, to apply variables at the host level, if for example it is outside the domain and you need to indicate different identifiers to it.

Here is an example :


I hope this inventory tutorial has helped you see more clearly how to manage your hosts with Ansible.




Leave a Comment