Skip to content

Instantly share code, notes, and snippets.

@marrobi
Last active February 10, 2017 17:47
Show Gist options
  • Save marrobi/f42899bcf0f29869a9be6a8200c0f785 to your computer and use it in GitHub Desktop.
Save marrobi/f42899bcf0f29869a9be6a8200c0f785 to your computer and use it in GitHub Desktop.
VMSecurityGroup
"VMSecurityGroup" : {
"Type" : "AWS::EC2::SecurityGroup",
"Properties" : {
"GroupDescription" : "Enable access to the host",
"VpcId" : { "Ref" : "VPC" },
"SecurityGroupIngress" : [
{ "IpProtocol" : "tcp", "FromPort" : "8000", "ToPort" : "8000", "SourceSecurityGroupId" : { "Ref" : "TestDriveLBSecurityGroup" } }
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment