| Path: | README.txt |
| Last Update: | Mon Apr 30 18:08:29 -0400 2007 |
Capistrano tasks to manage Amazon EC2 Images. Requires Capistrano 2.x
This project is in no way endorsed, sponsored by, or associated with Amazon or amazon.com.
require 'capazon'
#AWS login info
set :aws_access_key_id, 'XXX'
set :aws_secret_access_key, 'X'
# Name of the keypair used to spawn and connect to the Amazon EC2 Instance
# Defaults to one created by the setup_keypair task
set :aws_keypair_name, "#{application}-capazon"
# Path to the private key for the Amazon EC2 Instance mentioned above
# Detaults to one created by setup_keypair task
set :aws_private_key_path, "#{Dir.pwd}/#{aws_keypair_name}-key"
#defaults to an ubuntu image
#set :aws_ami_id, "ami-e4b6538d"
#defaults to, um, default
#set :aws_security_group, "default"
| Rubyforge Project Page: | rubyforge.org/projects/capazon |
| Author: | Jesse Newland (soylentfoo.jnewland.com) (jnewland@gmail.com) |
| Copyright: | Copyright (c) 2007 Jesse Newland |
| License: | Distributes under the same terms as Ruby |