Skip to main content

Extendable Python module for ansible EC2 inventories

Project description

This Python module is based on the original Ansible EC2 inventory script that is linked in the Ansible docs.

The Python module in this repo fixes a few issues by being

  • installable via pip / PyPi: no need to place code from the Ansible repo in your inventory.

  • extendable for your needs: the class Ec2Inventory can be used as a base class for customizations.

Installation

pip install ansible-ec2-inventory

Usage

As a script

ansible-ec2-inventory --config ec2.ini

Note: if you want to provide a boto profile, prefix the command with AWS_PROFILE=myprofile.

As a Python module

Example:

from ansible_ec2_inventory import Ec2Inventory
import json

def main():
    # get path of ec2.ini
    path = os.path.dirname(os.path.realpath(__file__))

    # get inventory
    ec2inventory = Ec2Inventory(configfile=path + '/ec2.ini')
    data = ec2inventory.get_inventory()

    # print json
    print(json.dumps(data, sort_keys=True, indent=2))

if __name__ == '__main__':
    main()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ansible-ec2-inventory-0.1.1.tar.gz (12.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page