A simple tool for checking your active AWS resources.
Create Python virtualenv
$ virtualenv venv-abako
$ source venv-abako/bin/activate
Install abako for local development
$ pip install --editable .
Show current options:
$ abako --help
usage: abako [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
dynamo show DynamoDB tables.
ec2 show EC2 instances.
ecr show ECR repositories.
elb show Elastic Load Balancers.
rds show RDS instances.
Show DynamoDB tables:
$ abako dynamo
Show provisoned EC2 instances:
$ abako ec2
Show RDS databases:
$ abako rds
Show ECR (Docker) repositories:
$ abako ecr
Show Elastic Load Balancers:
$ abako elb
Create wheel and sdist:
$ make sdist
Cleanup environment
$ make clean
Run tests:
$ make test