Created
April 5, 2010 19:41
-
-
Save Aslan/356770 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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