aws-clean 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +7 -2
- data/lib/aws_clean/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4fe543d141d9276e6ec83ac2d1017f4b6652c532
|
|
4
|
+
data.tar.gz: efb90bfe23c1a10e284a5229faed64391dfbfba3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8affbb975657052161919455938399dd6eab4f73d32cb77c7e8d14406b951caf7a2b1a1a6184302f612d374626dcbf107047a607b8a5273939700217ff79ec1
|
|
7
|
+
data.tar.gz: c3f89697a4d2ee0977ea4bb22b46d29349dd5f016ab742bdfc4ab8a0e9a29f4093f899c266ec5a3b850e8811197203a28af26bb5c998e12e9a27bda9f9494c13
|
data/CHANGELOG.md
CHANGED
|
@@ -3,5 +3,8 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.2.0]
|
|
7
|
+
- update vendor/aws-inventory. improves unused security group.
|
|
8
|
+
|
|
6
9
|
## [0.1.0]
|
|
7
10
|
- initial release
|
data/README.md
CHANGED
|
@@ -4,11 +4,16 @@ This tool cleans up AWS resources. It does aggresively confirms with "are you s
|
|
|
4
4
|
|
|
5
5
|
If you want want to bypass the all the prompts you can use the `--sure` flag. Be careful using the `--sure` flag!
|
|
6
6
|
|
|
7
|
+
This tool is useful to double check your work, it should not be relied on blindly to delete resources!
|
|
8
|
+
|
|
7
9
|
## Usage
|
|
8
10
|
|
|
9
11
|
```sh
|
|
10
|
-
aws-clean
|
|
11
|
-
|
|
12
|
+
aws-clean keypair # cleans up unused keypairs. works well
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
aws-clean sg # cleans up unused security groups. Too simple to work well. Sometimes security groups reference security groups.
|
|
12
17
|
```
|
|
13
18
|
|
|
14
19
|
## Install
|
data/lib/aws_clean/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-clean
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|