Created
April 2, 2011 11:57
-
-
Save Atalanta/899438 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description" : "Test template that fires up a single FreeBSD instance", | |
"Parameters" : { | |
"KeyPair" : { | |
"Description" : "The EC2 Key Pair to allow SSH access to the instance", | |
"Type" : "String" | |
} | |
}, | |
"Resources" : { | |
"Ec2Instance" : { | |
"Type" : "AWS::EC2::Instance", | |
"Properties" : { | |
"KeyName" : { "Ref" : "KeyPair" }, | |
"ImageId" : "ami-bfdaeecb" | |
} | |
} | |
}, | |
"Outputs" : { | |
"InstanceId" : { | |
"Description" : "The InstanceId of the newly created EC2 instance", | |
"Value" : { "Ref" : "Ec2Instance" } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment