This tool allow for listing and exporting your EC2 reserved instances.
It currently list your reserved EC2. It supports cross-account. It generates a csv file.
Below are requirements for a standalone installation. If you wish, a Dockerfile is available to run in a container. Those instructions are available below.
The only requirement for the script to work is Python 2.7
The python packages dependencies are listed in requirements.txt
The only dependency is boto3
Dependencies can be installed via :
pip install -r requirements.txt
You will need to have Docker installed.
After that, you can build the image from the Dockerfile docker build -t dockerfile/check-ri-usage .
You can then run the docker container :
docker run -it --rm \
--env AWS_ACCESS_KEY_ID={Your AWS access key} \
--env AWS_SECRET_ACCESS_KEY={Your AWS secret key} \
--env AWS_DEFAULT_REGION={Default region} \
dockerfile/check-check-ri-usage check-ri-usage.py
You can specify the output of your via the option -o [PATH]
You can specify an aws profile via the option --profile [PROFILE]
.
If you specify a profile, you do not need to have the key set in your environment.