Skip to content

Instantly share code, notes, and snippets.

@bobbywilson0
Created June 1, 2009 23:44
Show Gist options
  • Select an option

  • Save bobbywilson0/121887 to your computer and use it in GitHub Desktop.

Select an option

Save bobbywilson0/121887 to your computer and use it in GitHub Desktop.
require 'rubygems'
$:.unshift "#{File.dirname(__FILE__)}/../lib"
require "poolparty"
pool :assessing_parenting do
instances 1
cloud :app_stack do
using :ec2
security_group 'web'
availability_zone 'us-east-1a'
keypair 'gsg-keypair'
image_id "ami-ef48af86"
chef do
include_recipes "~/.poolparty/chef/cookbooks/*"
recipe "#{::File.dirname(__FILE__)}/chef_recipe.rb"
templates "#{::File.dirname(__FILE__)}/templates"
end
verify do
ping
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment