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.
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.