Created
July 18, 2018 01:28
-
-
Save endofcake/15ad47f1a5dcef3c2d2330be3b2beb19 to your computer and use it in GitHub Desktop.
Test security group
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
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