acli is a simple CLI for querying and managing AWS services, written in Python using the boto3 SDK and terminaltables libraries.
Please submit any issues encountered.
Latest changes (changelog)
0.1.32 (18th April 2017)
- Provide info on EFS file systems and targets
- Fix issue where authentication issues were hidden
0.1.31 (8th Jan 2017)
- Add IAM user listing and user info
- Fix secgroup list option
- S3 - treat file as binary when getting md5
0.1.30 (18th August 2016)
- Embed Six (remove external dependency)
- Python 3 compatibility for S3
0.1.29 (29th July 2016)
- Move s3 owner information to s3 info
- Python 3 compatibility
- Minor fixes
0.1.28 (25th July 2016)
- Add s3 owner information
0.1.27 (25th July 2016)
- Broken
0.1.26 (24th July 2016)
- Add basic support for EFS
- Minor fixes
0.1.25 (23rd July 2016)
- Correct ec2 instance counts
- Fix python 3 compatibility
- Fix output issues with s3 and ec2
- Upgrade dependencies
0.1.24 (5th April 2016)
- Improve permission checks to prevent false negatives
- Minor fixes
Simple:
sudo pip install acli
Latest (from source):
git clone [email protected]:jonhadfield/acli.git
sudo python setup.py install
Using the boto3 library means that credentials will be retrieved from the standard locations: http://boto3.readthedocs.org/en/latest/guide/configuration.html#configuration-files
Alternatively, you can specify them on the command line (see -h option for details).
To see available services and commands, run:
acli -h
List ec2 instances in the account matching:
acli ec2 list
View information on an instance:
acli ec2 info i-12ab3c45
List contents of an S3 bucket:
acli s3 list my_bucket
MIT