- pool "poolparty" do
- cloud "chef" do
- instances 1
- using :ec2
- chef :solo do
- repo File.dirname(__FILE__)+"/chef_cloud/chef_repo"
- recipe "apache2"
- recipe "passenger"
- recipe "rails"
- attributes :apache2 => {:listen_ports => ["80", "8080"]}
- end
- security_group do
- authorize :from_port => "22", :to_port => "22"
- authorize :from_port => "80", :to_port => "80"
- end
- end
- end
