Skip to content

Instantly share code, notes, and snippets.

@anneakin
anneakin / aws_cfn_sandbox_parameters.yml
Created May 23, 2020 00:48
AWS CloudFormation Parameters
Parameters:
Username:
Type: String
Description: User's identifier used to label resources created in template.
UserKey:
Type: AWS::EC2::KeyPair::KeyName
Description: Existing EC2 key-pair to SSH into the instance.
Subnet:
Type: AWS::EC2::Subnet::Id
Description: Subnet for EC2 instance
@anneakin
anneakin / aws_cfn_sandbox_version_description.yml
Created May 23, 2020 00:46
AWS Template Format Version & Description
AWSTemplateFormatVersion: "2010-09-09"
Description: Template to demonstrate simple sandbox environment resources
@anneakin
anneakin / aws_cfn_sandbox.yml
Last active May 22, 2020 21:02
AWS CloudFormation simple sandbox template
AWSTemplateFormatVersion: "2010-09-09"
Description: Template to demonstrate simple sandbox environment resources
Parameters:
Username:
Type: String
Description: User's identifier used to label resources created in template.
UserKey:
Type: AWS::EC2::KeyPair::KeyName
Description: Existing EC2 key-pair to SSH into the instance.