Created
November 15, 2011 21:43
-
-
Save farshidce/1368463 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" : "AWS CloudFormation Sample Template EC2InstanceSample: Create an Amazon EC2 instance running the Amazon Linux AMI. The AMI is chosen based on the region in which the stack is run. This example uses the default security group, so to SSH to the new instance using the KeyPair you enter, you will need to have port 22 open in your default security group. **WARNING** This template an Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.", | |
"Parameters" : { | |
"KeyName" : { | |
"Description" : "Name of an existing EC2 KeyPair to enable SSH access to the instance", | |
"Type" : "String" | |
} | |
}, | |
"Mappings" : { | |
"RegionMap" : { | |
"us-east-1" : { "AMI" : "ami-2f2be946" } | |
} | |
}, | |
"Resources" : { | |
"Ec2Instance" : { | |
"Type" : "AWS::EC2::Instance", | |
"Properties" : { | |
"KeyName" : { "Ref" : "KeyName" }, | |
"ImageId" : { "Fn::FindInMap" : [ "RegionMap", { "Ref" : "AWS::Region" }, "AMI" ]}, | |
"UserData" : { "name" : "farshid-cf" } | |
} | |
} | |
}, | |
"Outputs" : { | |
"InstanceId" : { | |
"Description" : "InstanceId of the newly created EC2 instance", | |
"Value" : { "Ref" : "Ec2Instance" } | |
}, | |
"AZ" : { | |
"Description" : "Availability Zone of the newly created EC2 instance", | |
"Value" : { "Fn::GetAtt" : [ "Ec2Instance", "AvailabilityZone" ] } | |
}, | |
"PublicIP" : { | |
"Description" : "Public IP address of the newly created EC2 instance", | |
"Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PublicIp" ] } | |
}, | |
"PrivateIP" : { | |
"Description" : "Private IP address of the newly created EC2 instance", | |
"Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PrivateIp" ] } | |
}, | |
"PublicDNS" : { | |
"Description" : "Public DNSName of the newly created EC2 instance", | |
"Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PublicDnsName" ] } | |
}, | |
"PrivateDNS" : { | |
"Description" : "Private DNSName of the newly created EC2 instance", | |
"Value" : { "Fn::GetAtt" : [ "Ec2Instance", "PrivateDnsName" ] } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment