Skip to content

Instantly share code, notes, and snippets.

@carlessanagustin
Created October 3, 2015 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlessanagustin/3cfad053e70254e2f795 to your computer and use it in GitHub Desktop.
Save carlessanagustin/3cfad053e70254e2f795 to your computer and use it in GitHub Desktop.
AWS CloudFormation mini-demo
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "launch an instance.",
"Resources": {
"Ec2Instance": {
"Type": "AWS::EC2::Instance",
"Properties": {
"ImageId": "ami-d05e75b8",
"InstanceType": "t2.micro"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment