Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 856 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 856 Bytes

All scripts assume that your AWS credentials are in ~/.aws/credentials or ~/.aws/config

[default]
aws_access_key_id = <your access key>
aws_secret_access_key = <your secret key>

or /etc/boto.cfg or ~/.boto files:

[Credentials]
aws_access_key_id = <your access key>
aws_secret_access_key = <your secret key>

See boto configuration for how to set up credential files.

boto vs boto3

The original scripts use the now unsupported boto library. Some scripts have been updated to use the current boto3 and botocore libraries. Originals are in the boto directory and updated are in boto3. Updated versions also require Python 3.

External Dependencies