Metadata-Version: 2.1
Name: aws-rotate
Version: 0.0.3
Summary: A simple AWS Access ID/Secret rotation script
Home-page: https://github.com/grahamhar/aws-rotate
Author: grahamhar
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/grahamhar/aws-rotate/issues
Project-URL: Source, https://github.com/grahamhar/aws-rotate/
Keywords: aws access iam rotation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: boto3
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: coveralls; extra == 'dev'

# aws-rotate

[![alt text](https://travis-ci.org/grahamhar/aws-rotate.svg?branch=master "Build Sttaus")](https://travis-ci.org/grahamhar/aws-rotate/builds/400138472) [![Coverage Status](https://coveralls.io/repos/github/grahamhar/aws-rotate/badge.svg?branch=master)](https://coveralls.io/github/grahamhar/aws-rotate?branch=master) [![Downloads](http://pepy.tech/badge/aws-rotate)](http://pepy.tech/project/aws-rotate)

Rotate AWS Access Keys and update local credentials file.

It's good practise to rotate access IDs and keys for AWS IAM users, but a pain to do, this simple script automates the process

## Installation
Create a python virtual environment and activate it

```
pip install aws-rotate
```

## Usage

Make sure you have the relevant AWS_PROFILE environment variable set or the default profile will be used see [aws credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-config-files.html)

```
aws-rotate-keys
```

## Development

Clone this repo and install the dev packages

```
pip install -e ".[dev]"
```

Once you have made changes and the test pass create a pull request



