Created
August 7, 2013 12:47
-
-
Save robertberry-zz/6173766 to your computer and use it in GitHub Desktop.
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
{ | |
"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