| by Arround The Web | No comments

Ansible Hostvars

Ansible is a powerful, free, and open-source tool commonly that is used in automation tasks such as configuration management, application deployment, infrastructure management, etc.

One of the powerful features it offers is variables which can be used to customize how Ansible interacts with target machines.

In Ansible, the hostvars variable refers to a dictionary that contains information about all the hosts. This dictionary allows us to access the variables that are associated with other hosts even when working on a playbook that is dedicated to a single host.

In this tutorial, we will learn how to use the hostvars variable. We will learn its role, how it can benefit us, and how to use it in a playbook.

When to Use Hostvars

The main question you may ask before learning about the hostvars variable is, “when would I need to use it?”

Consider a multi-server environment where specific tasks on one server may depend on another server’s data or state. Using the hostvars variable, we can access the variables set for any host in the inventory which allows us to quickly and efficiently integrate the inter-host dependencies.

How to Use Hostvars

Let us now proceed and discuss how we can use the hostvars in Ansible.

Consider a scenario where you have two servers: a database server and an application server.

In this scenario, the application server needs the IP address of the database server so it can communicate with the database server.

Assume that we have the inventory file defined as follows:

[database] dbserver ansible_host=192.168.1.10
[app] appserver ansible_host=192.168.1.20

In a playbook, if we want to use the IP of dbserver when setting up the appserver, we can use the hostvars variable as follows:

---
- hosts: app
  tasks:
    - name: Print DB server IP
      debug:
        msg: "The database server IP is {{ hostvars['dbserver']['ansible_host'] }}"

Using Loops

Let’s consider we have multiple app servers and we want to print the IPs of all servers in our database server for some logging purposes.

[database] dbserver ansible_host=192.168.1.10
[app] appserver1 ansible_host=192.168.1.20
appserver2 ansible_host=192.168.1.30

To do this, we can use a loop in the playbook as shown in the following example:

---
- hosts: database
  tasks:
    - name: Print all app server IPs
      debug:
        msg: "App server {{ item }} IP is {{ hostvars[item]['ansible_host'] }}"
      loop: "{{ groups['app'] }}"

Using Conditions

We can also combine the hostvars dictionary with ansible conditions to perform an action when the condition is met as demonstrated in the following example:

- name: Run this command if IP is 192.168.1.20
  command: echo 'log1'
  when: hostvars['appserver1']['ansible_host'] == '192.168.1.20'

Nested Variables

If the variables are nested, we can drill down the dictionary as demonstrated in the following playbook example:

msg: "Value is {{ hostvars['somehost']['nested']['variable'] }}"

Conclusion

We learned how to use the hostvars in Ansible. This tool is powerful in Ansible’s arsenal, especially in complex multi-server environments where the tasks and roles might have interdependencies.

Share Button

Source: linuxhint.com

Leave a Reply