aws-nuke
This repo contains a CLI tool to delete all AWS resources in an account. aws-nuke was created for situations when you might have an account you use for testing and need to clean up left over resources so AWS doesn't charge you for them. Also great for cleaning out accounts with redundant resources.
The currently supported functionality includes:
- Deleting all Auto scaling groups in an AWS account
- Deleting all Elastic Load Balancers (Classic and V2) in an AWS account
- Deleting all EBS Volumes in an AWS account
- Deleting all unprotected EC2 instances in an AWS account
Install
- Download the latest binary for your OS on the releases page.
- Move the binary to a folder on your
PATH
. E.g.: mv aws-nuke_darwin_amd64 /usr/local/bin/aws-nuke
.
- Add execute permissions to the binary. E.g.:
chmod u+x /usr/local/bin/aws-nuke
.
- Test it installed correctly:
aws-nuke --help
.
Usage
Simply running aws-nuke
will start the process of cleaning up your AWS account. You'll be shown a list of resources that'll be deleted as well as a prompt to confirm before any deletion actually takes place.
Excluding Regions
You can use the --exclude-region
flag to exclude resources in certain regions from being deleted. For example the following command does not nuke resources in ap-south-1
and ap-south-2
regions:
aws-nuke --exclude-region ap-south-1 --exclude-region ap-south-2
Excluding Resources by Age
You can use the --older-than
flag to only nuke resources that were created before a certain period, the possible values are all valid values for ParseDuration For example the following command nukes resources that are at least one day old:
aws-nuke --older-than 24h
Happy Nuking!!!
Credentials
In order for the aws-nuke
CLI tool to access your AWS, you will need to provide your AWS credentials. You can used one of the standard AWS CLI credential mechanisms.
Running Tests
go test -v ./...
License
This code is released under the MIT License. See LICENSE.txt.