Ansible Dynamic Inventory

Deep
@awsblogs
Published in
3 min readJul 3, 2020

--

Ansible Dynamic Inventory with AWS EC2 Plugin

With rapidly scaling cloud environment, it’s difficult to maintain couple of things due to scaling operations being done automatically based on load and other parameters. You might have seen your autoscaling launched few more EC2 instances and when you use Ansible (static inventory) you might miss those new instances. So here we are going to focus mainly on how to use Ansible to create a dynamic inventory using AWS EC2 plugin. I believe you used Ansible for your daily operations and have some knowledge on Ansible.

Ansible dynamic inventory plugin is supported from Ansible 2.7 version. Make sure you use Ansible 2.7+ version or upgrade your Ansible.

Install Ansible (if not installed already)

sudo apt-get update -y
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update -y
sudo apt-get install ansible -y
sudo ansible --version

Get ansible config path from Ansible version command

ansible 2.7.1
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages/ansible
executable location = /usr/bin/ansible
python version = 2.7.17 (default, Apr 15 2020, 17:20:14) [GCC 7.5.0]

Add the following in ansible config file (Only needed if plugin is not enabled by default)

[inventory]
enable_plugins = aws_ec2, host_list, script, auto, yaml, ini, toml

Create aws_ec2.yml file (Dynamic Inventory file)

plugin: aws_ec2
boto_profile: default
regions:
- us-east-2
filters:
instance-state-name: running
tag:Env: Prod
keyed_groups:
- key: tags.Role
separator: ""
compose:
ansible_host: private_ip_address

Sample Output of dynamic inventory

root@ip-172-31-36-29:/home/ubuntu# ansible-inventory -i aws_ec2.yml --graph
@all:
|--@Backend_App:
| |--ec2-18-216-193-29.us-east-2.compute.amazonaws.com
| |--ec2-18-219-20-112.us-east-2.compute.amazonaws.com
| |--ec2-18-224-182-42.us-east-2.compute.amazonaws.com
|--@Frontend_App:
| |--ec2-18-191-224-147.us-east-2.compute.amazonaws.com
| |--ec2-18-219-113-21.us-east-2.compute.amazonaws.com
|--@aws_ec2:
| |--ec2-18-191-224-147.us-east-2.compute.amazonaws.com
| |--ec2-18-216-193-29.us-east-2.compute.amazonaws.com
| |--ec2-18-219-113-21.us-east-2.compute.amazonaws.com
| |--ec2-18-219-20-112.us-east-2.compute.amazonaws.com
| |--ec2-18-224-182-42.us-east-2.compute.amazonaws.com
|--@ungrouped:

Let’s see about the above file aws_ec2.yml in detail.

plugin: aws_ec2 - Defines which plugin to useboto_profile: default - My boto profile on this machine where I run ansible inventory commandregions - AWS EC2 regions, you can mention any number of regionsfilters - Used to filter out EC2 instances based on conditions. Here we are selecting only running instances with tag "Env: Prod"keyed_groups - Define how you want to create groups. Here we are again using tag called `Role` for creating groupscompose - Output (you can mention private_ip_address or public_ip_address based on your need)

Run Ansible playbook

Suppose if I want to run some Ansible playbook for all the servers in Backend_App, you can use the command like below. Below is the sample playbook that I used. It just creates a new directory in a particular path.

ubuntu@ip-172-31-36-29:~$ cat play.yml 
- name : Playbook to create a folder
hosts: all
user: ubuntu
become: yes
gather_facts: True
tasks:
- name: Create a folder
file:
path: /home/ubuntu/folder
state: directory
owner: ubuntu
mode: 0755

Let’s use -i (inventory as a dynamic inventory yml file we prepared) and
-l (group_name) as a parameter to automatically use dynamic inventory and select the group that we specified in -l parameter.

Also I’m forcing Ansible to use python3 using this variable ansible_python_interpreter=/usr/bin/python3 but its optional.

ubuntu@ip-172-31-36-29:~$ ansible-playbook --private-key ohio.pem -i aws_ec2.yml -l Backend_App play.ymlPLAY [Playbook to create a folder] ******************************************************************************************************TASK [Gathering Facts] ******************************************************************************************************************
ok: [ec2-18-219-20-112.us-east-2.compute.amazonaws.com]
ok: [ec2-18-216-193-29.us-east-2.compute.amazonaws.com]
ok: [ec2-18-224-182-42.us-east-2.compute.amazonaws.com]
TASK [Create a folder] ******************************************************************************************************************
ok: [ec2-18-219-20-112.us-east-2.compute.amazonaws.com]
ok: [ec2-18-216-193-29.us-east-2.compute.amazonaws.com]
ok: [ec2-18-224-182-42.us-east-2.compute.amazonaws.com]
PLAY RECAP ******************************************************************************************************************************
ec2-18-216-193-29.us-east-2.compute.amazonaws.com : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
ec2-18-219-20-112.us-east-2.compute.amazonaws.com : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
ec2-18-224-182-42.us-east-2.compute.amazonaws.com : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0

--

--