Skip to content

Managing Ansible Inventory

Avatar photo

https://www.linkedin.com/in/gineesh/ https://twitter.com/GiniGangadharan

Inventory File

An inventory file is a simple and plain text file where we store those host information ansible has to deal with. It can be simple in any format (YAML, ini, etc). Default inventory file location is /etc/ansible/hosts but you can specify a different inventory file in your ansible config file (as above) or using the -i option on the command line.

[root@ansible-box ~]# ansible all -m ping -i myinventory

Here see a sample inventory file.

[myself]
localhost

[intranetweb]
servera.techbeatly.com
serverb.techbeatly.com

[database]
db101.techbeatly.com

[everyone:children]
myself
intranetweb
database

You can see, this is a simple one in ini format and contains few hosts and groups. Group myself contains only one host which is localhost. (Not a mandatory one, I have given as an example). intranetweb group containers 2 servers – servera.techbeatly.com and serverb.techbeatly.com. db101.techbeatly.com is under database group. And finally we have group everyone with all other groups as children.

Lets check what ansible can understand from this inventory file.

[root@ansible-box ansible]# ansible all --list-hosts
  hosts (4):
    db101.techbeatly.com
    localhost
    servera.techbeatly.com
    serverb.techbeatly.com
    
[root@ansible-box ansible]# ansible intranetweb --list-hosts
  hosts (2):
    servera.techbeatly.com
    serverb.techbeatly.com    

Here see some of the sample ansible --list-host pattern for reference.

ansible db1.example.com -i inventory --list-hosts
ansible -i inventory --list-hosts 172.25.252.44
ansible -i inventory --list-hosts all
ansible -i inventory --list-hosts london
ansible -i inventory --list-hosts environments
ansible -i inventory --list-hosts ungrouped
ansible -i inventory --list-hosts '.example.com'
ansible -i inventory --list-hosts '.example.com,!.lab.example.com'
ansible -i inventory --list-hosts lb1.lab.example.com,s1.lab.example.com,db1.example.com
ansible -i inventory --list-hosts '172.25.'
ansible -i inventory --list-hosts 's'
ansible -i inventory --list-hosts 'prod,172,lab'
ansible -i inventory --list-hosts 'db,&london'

If you are adding a lot of hosts following similar patterns, you can add as below rather than listing each hostname:

[webservers]
www[01:50].example.com
[databases]
db-[a:f].example.com

192.168.0.[10:20]
[a:c].dns.example.com

Dynamic Inventory

Inventory can be static (like ini or YAML format) or dynamic via inventory scripts. For those working on cloud or container based environment, you will not be able to manage inventory with a static source. In that case you need a dynamic inventory system with scripts.

There are few sample inventory scripts available by community; check this repo for samples. Also read Working with Dynamic Inventories.

[devops@ansible-box dep-dynamic]$ inventory/myinventory.py --list
{"webservers": {"hosts": ["servera.teachbeatly.com"], "vars": {}}}

Let’s learn about ad-hoc commands in next chapter.

See all parts of  Automation with Ansible Guides here

Disclaimer:

The views expressed and the content shared in all published articles on this website are solely those of the respective authors, and they do not necessarily reflect the views of the author’s employer or the techbeatly platform. We strive to ensure the accuracy and validity of the content published on our website. However, we cannot guarantee the absolute correctness or completeness of the information provided. It is the responsibility of the readers and users of this website to verify the accuracy and appropriateness of any information or opinions expressed within the articles. If you come across any content that you believe to be incorrect or invalid, please contact us immediately so that we can address the issue promptly.

Avatar photo


https://www.linkedin.com/in/gineesh/ https://twitter.com/GiniGangadharan
Gineesh Madapparambath is the founder of techbeatly and he is the author of the book - ๐—”๐—ป๐˜€๐—ถ๐—ฏ๐—น๐—ฒ ๐—ณ๐—ผ๐—ฟ ๐—ฅ๐—ฒ๐—ฎ๐—น-๐—Ÿ๐—ถ๐—ณ๐—ฒ ๐—”๐˜‚๐˜๐—ผ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป. He has worked as a Systems Engineer, Automation Specialist, and content author. His primary focus is on Ansible Automation, Containerisation (OpenShift & Kubernetes), and Infrastructure as Code (Terraform). (aka Gini Gangadharan - iamgini.com)

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.