Skip to content

Commit

Permalink
Add security rule: open port 7077 from client
Browse files Browse the repository at this point in the history
  • Loading branch information
rmessner authored and nchammas committed Apr 7, 2016
1 parent 57f2dee commit b99b55e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions flintrock/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,12 @@ def get_or_create_ec2_security_groups(
from_port=4040,
to_port=4040,
cidr_ip=flintrock_client_cidr,
src_group=None),
SecurityGroupRule(
ip_protocol='tcp',
from_port=7077,
to_port=7077,
cidr_ip=flintrock_client_cidr,
src_group=None)
]

Expand Down

0 comments on commit b99b55e

Please sign in to comment.