Ansible dynamic inventory not working properly

amazon-web-servicesansibleconfiguration-management

This is for dynamic inventory for use with AWS

RHEL 7.3

python2-boto-2.45.0-3.el7.noarch

ANSIBLE VERSION

ansible 2.3.1.0
config file = /projects/robomation/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.5 (default, Aug 2 2016, 04:20:16) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]

I have several resources running and when i run

ec2.py --list

{
  "_meta": {
    "hostvars": {}
  }
}

Also when i try to run ansible playbooks targeting hosts with certain tags, i get this

[WARNING]: Found both group and host with same name: localhost
...
...
...
skipping: no hosts matched

I am having issues setting up dynamic inventory to work properly. I have my ec2.ini and ec2.py files and ec2.py is set to be executable and i believe i have setup right. Also command does not return error only it returns nothing in body.

[root@robomation robomation]# env | grep ANSIBLE
ANSIBLE_HOSTS=/projects/robomation/inventory/ec2.py

[root@robomation robomation]# env | grep EC2_INI
EC2_INI_PATH=/projects/robomation/inventory/ec2.ini

[root@robomation robomation]# env | grep AWS
AWS_REGION=us-west-2

[root@robomation robomation]# inventory/ec2.py --list
{
  "_meta": {
    "hostvars": {}
  }
}
[root@robomation robomation]# ansible --version
ansible 2.3.1.0
  config file = /projects/robomation/ansible.cfg
  configured module search path = Default w/o overrides
  python version = 2.7.5 (default, Aug  2 2016, 04:20:16) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]

What do i do to troubleshoot dynamic inventory?

UPDATE:

pip freeze

boto3==1.4.4
botocore==1.5.82

rpm -qa | grep boto

python2-boto-2.45.0-3.el7.noarch

Best Answer

The ec2.py dynamic inventory uses boto to make API calls to AWS.

So you might want to check if boto can connect to AWS by running:

python
>>> import boto
>>> s3 = boto.connect_s3()

if you get something like this:

boto.exception.NoAuthHandlerFound: No handler was ready to authenticate. 1 handlers were checked. ['HmacAuthV1Handler'] Check your credentials

your credentials are not correct. There are several ways to configure boto. But for debugging purposes you could simple set AWS_ACCESS_KEY_ID and `AWS_SECRET_ACCESS_KEY' via command line like this:

export AWS_ACCESS_KEY_ID='AK123'
export AWS_SECRET_ACCESS_KEY='abc123'

When using IAM roles you should note that:

IAM Roles are supported by plugins/inventory/ec2.py when using boto 2.5.0 or higher.

When running on an EC2 instance that has an IAM Role assigned, and the role policy allows the ec2:Describe* action, ec2.py --list will work without the need to specify aws_access_key_id or aws_secret_access_key.

Additional actions will need to be allowed in the role policy if ec2.ini defines route53 = True or rds = True. github issue