Skip to content

Instantly share code, notes, and snippets.

@pbzona
Created November 21, 2017 18:05
Show Gist options
  • Save pbzona/b7e6649a56835ce6043dcf93b32258eb to your computer and use it in GitHub Desktop.
Save pbzona/b7e6649a56835ce6043dcf93b32258eb to your computer and use it in GitHub Desktop.
CloudFormation - EC2 creation template with parameters
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