Skip to content

Instantly share code, notes, and snippets.

@Aslan
Created April 5, 2010 19:41
Show Gist options
  • Save Aslan/356770 to your computer and use it in GitHub Desktop.
Save Aslan/356770 to your computer and use it in GitHub Desktop.
cloud "frontend-app" do
using :ec2
user_data File.read('instance_data/frontend_app_qa_user_data.json')
#image_id AMI_32_BIT
image_id AMI_64_BIT
instance_type "m1.large"
instances 1..25
security_group do
authorize :from_port => 22, :to_port => 22, :ip_protocol => 'tcp',:group_name => "admin-server-group" ,:owner_id => xx, :network => ""
authorize :from_port => 80, :to_port => 80
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment