Created
November 21, 2017 18:05
-
-
Save pbzona/b7e6649a56835ce6043dcf93b32258eb to your computer and use it in GitHub Desktop.
CloudFormation - EC2 creation template with parameters
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
Parameters: | |
InstanceType: | |
Description: EC2 instance type | |
Type: String | |
Default: t2.micro | |
Resources: | |
EC2Instance: | |
Type: AWS::EC2::Instance | |
Properties: | |
InstanceType: !Ref InstanceType | |
KeyName: 'default' # keypair must already exist | |
ImageId: ami-6869aa05 # AMI us-east-1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment