Skip to content

Commit de10e2b

Browse files
committed
Merge pull request #545 from fagiani/master
Adding port 8000 to the EC2 security group
2 parents c1e23d5 + 9632606 commit de10e2b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

contrib/ec2/provision-ec2-controller.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,14 @@ if ! ec2-describe-group | grep -q "$sg_name"; then
8383
set -x
8484
ec2-create-group $sg_name -d "Created by Deis"
8585
set +x
86-
echo_color "Authorizing TCP ports 22,80,443,514 from $sg_src..."
86+
echo_color "Authorizing TCP ports 22,80,443,514,2222,8000 from $sg_src..."
8787
set -x
8888
ec2-authorize deis-controller -P tcp -p 22 -s $sg_src >/dev/null
8989
ec2-authorize deis-controller -P tcp -p 80 -s $sg_src >/dev/null
9090
ec2-authorize deis-controller -P tcp -p 443 -s $sg_src >/dev/null
9191
ec2-authorize deis-controller -P tcp -p 514 -s $sg_src >/dev/null
9292
ec2-authorize deis-controller -P tcp -p 2222 -s $sg_src >/dev/null
93+
ec2-authorize deis-controller -P tcp -p 8000 -s $sg_src >/dev/null
9394
set +x
9495
else
9596
echo_color "Security group $sg_name exists"

0 commit comments

Comments
 (0)