Skip to content
/ bang Public

Experimental Python utility for automating the rotation of AWS IAM Access Keys

Notifications You must be signed in to change notification settings

rafifdna/bang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Bang: AWS IAM Access Key Rotation Tool

Bang was initially developed as a personal project to help automate the AWS IAM access key rotation process. Keep in mind that the tool is not perfect.

Quick Start Guide

Installation

# Clone this repository
git clone https://github.com/yourusername/bang.git
cd bang

# Install dependencies
pip install boto3

# Make the script executable
chmod +x main.py

Basic Usage

The simplest way to use Bang is with default settings:

./main.py

This command will:

  • Detect your current AWS user
  • Rotate the access keys for that user
  • Update your default profile in ~/.aws/credentials
  • Deactivate your old key
  • Schedule the old key for deletion after 7 days

Common Examples

  1. Rotate keys for a specific profile:
./main.py --profile production
  1. Rotate keys for a specific user:
./main.py --user admin-user
  1. Delete old keys immediately with no grace period:
./main.py --grace-period 0
  1. Force rotation when a user already has two keys:
./main.py --force

Automating Key Rotation

You can set up scheduled key rotation using cron or other scheduling tools:

# Example cron entry to rotate keys every 90 days
0 0 1 */3 * /path/to/main.py --profile default >> /var/log/key-rotation.log 2>&1

About

Experimental Python utility for automating the rotation of AWS IAM Access Keys

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages