AWS - Create a Dynamic Inventory
Create a dynamic inventory of the deployed hosts on AWS.
We'll cover the following...
Ansible has a built-in inventory plugin for AWS called aws_ec2
. The plugin queries AWS for EC2 instance details and constructs an Ansible inventory from that information. The inventory’s hosts are populated by the EC2 instances that are returned. Group and group memberships are determined by the host variables that are assigned to each host.
We ceate a file named hosts_aws_ec2.yml
and define the aws_ec2
settings.
plugin: aws_ec2regions:- us-east-1filters:tag:app: ansible
Let’s break down the file.
-
plugin
: Define the inventory plugin,aws_ec2
. -
regions
: List all the regions for the inventory. All EC2 instances within the listed regions will then be added to the inventory. -
filter
:tag:app
limit the inventory to only EC2 instances that match the tag specified,ansible
. Without this, it would include ...