AWS provider for cloudat
Add this line to your application's Gemfile:
gem 'cloudat-aws'And then execute:
$ bundle
Or install it yourself as:
$ gem install cloudat-aws
Adds the following functionalities to cloudat:
- destroy: deletes a stack
- Locate a stack from its arn
destroy cfn_stack '<stack arn>'- Locate stacks by their stack name or id using RegExps
destroy cfn_stacks stack_name: /stack_nam.*/
destroy cfn_stacks stack_id: %r{^arn:aws:cloudformation:.*:.*:stack/test-stack}- start: Starts an EC2 instance
- stop: Stops an EC2 instance
- terminate: Terminates an EC2 instance
- suspend: Suspends AutoScaling processes
- resume: Resumes AutoScaling processes
- Fork it ( https://github.com/[my-github-username]/cloudat-aws/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request