Skip to content

Instantly share code, notes, and snippets.

@robertberry-zz
Created August 7, 2013 12:47
Show Gist options
  • Save robertberry-zz/6173766 to your computer and use it in GitHub Desktop.
Save robertberry-zz/6173766 to your computer and use it in GitHub Desktop.
{
"EC2SecurityGroup": {
"Type": "AWS::EC2::SecurityGroup",
"Properties": {
"GroupDescription": "Open up HTTP access to load balancer",
"SecurityGroupIngress": [
{
"IpProtocol": "tcp",
"FromPort": "9000",
"ToPort": "9000",
"SourceSecurityGroupName": "amazon-elb-sg",
"SourceSecurityGroupOwnerId": "amazon-elb"
},
{
"IpProtocol": "tcp",
"FromPort": "18080",
"ToPort": "18080",
"SourceSecurityGroupName": "amazon-elb-sg",
"SourceSecurityGroupOwnerId": "amazon-elb"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment