No commit activity in last 3 years
No release in over 3 years
Remove AWS LaunchConfiguration quickly.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.9
~> 10.0
>= 0

Runtime

~> 2.0
>= 0
 Project Readme

LaunchConfigurationCleaner

You can remove many LaunchConfigurations (AWS autoscaling setting) easier.

Installation

Add this line to your application's Gemfile:

gem 'launch_configuration_cleaner'

And then execute:

$ bundle

Or install it yourself as:

$ gem install launch_configuration_cleaner

Set these enviroment variable

export AWS_ACCESS_KEY_ID=your-access-key-id
export AWS_SECRET_ACCESS_KEY=your-secret-access-key
export AWS_REGION=your-region

Usage

  1. Execute clean_lc in your terminal.
$ clean_lc
  1. Then, this app shows your LaunchConfigurations.
[
  YourLaunchConfiguration1,
  YourLaunchConfiguration2,
  YourLaunchConfiguration3,
  YourLaunchConfiguration4,
  YourLaunchConfiguration5,
]
  1. Enter "y", if you want to remove a LaunchConfiguration
Do you want to delete YourLaunchConfiguration1? (y/n)
  1. After judging each configurations, you need to enter a final answer.
These launch configurations will be deleted.
[
  YourLaunchConfiguration1,
  YourLaunchConfiguration3,
  YourLaunchConfiguration5,
]
Are you sure? (yes or no)

If you enter "yes", LaunchConfigurations will be deleted.

Contributing

  1. Fork it ( https://github.com/[my-github-username]/launch_configuration_cleaner/fork )
  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 a new Pull Request