Skip to content

Instantly share code, notes, and snippets.

@endofcake
Created July 18, 2018 01:28
Show Gist options
  • Save endofcake/15ad47f1a5dcef3c2d2330be3b2beb19 to your computer and use it in GitHub Desktop.
Save endofcake/15ad47f1a5dcef3c2d2330be3b2beb19 to your computer and use it in GitHub Desktop.
Test security group
AWSTemplateFormatVersion: '2010-09-09'
Resources:
VPC:
Type: "AWS::EC2::VPC"
Properties:
CidrBlock: 10.0.0.0/16
SecurityGroup:
Type: "AWS::EC2::SecurityGroup"
Properties:
GroupName: TestSG
GroupDescription: Test security group
VpcId: !Ref VPC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment