Sha256: 63f3f4d4f781102038ee5d3398bedd7826a7cfb09bb50b8cfe9eedd07bef6949

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 KB

Contents

# Aws Clean Tool

This tool cleans up AWS resources.  It does aggresively confirms with "are you sure?" prompts before deleting each resource.

If you want want to bypass the all the prompts you can use the `--sure` flag. Be careful using the `--sure` flag!

This tool is useful to double check your work, it should not be relied on blindly to delete resources!

## Usage

```sh
aws-clean keypair # cleans up unused keypairs. works well
```

```
aws-clean sg # cleans up unused security groups. Too simple to work well. Sometimes security groups reference security groups.
```

## Install

Add to Gemfile:

```sh
gem "aws-clean"
```

And then run:

```sh
bundle
```

Or install it with the gem command:

```sh
gem install aws-clean
```

## Development

To develop on the bleeding edge:

```sh
git clone https://github.com/tongueroo/aws-clean
git submodule init
git submodule update
```

This tool uses the [aws-inventory](https://github.com/tongueroo/aws-inventory) which is vendorized under vendor/aws-inventory.

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am "Add some feature"`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aws-clean-0.2.0 README.md