Skip to content

Commit ce8d1be

Browse files
committed
Fixed #100 -- added rsyslog port 514 to EC2 provisioning script.
1 parent aae91eb commit ce8d1be

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

contrib/provision-ec2-controller.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,12 @@ if ! ec2-describe-group | grep -q "$sg_name"; then
5757
set -x
5858
ec2-create-group $sg_name -d "Created by Deis"
5959
set +x
60-
echo_color "Authorizing TCP ports 22,80,443 from $sg_src..."
60+
echo_color "Authorizing TCP ports 22,80,443,514 from $sg_src..."
6161
set -x
6262
ec2-authorize deis-controller -P tcp -p 22 -s $sg_src >/dev/null
6363
ec2-authorize deis-controller -P tcp -p 80 -s $sg_src >/dev/null
6464
ec2-authorize deis-controller -P tcp -p 443 -s $sg_src >/dev/null
65+
ec2-authorize deis-controller -P tcp -p 514 -s $sg_src >/dev/null
6566
set +x
6667
else
6768
echo_color "Security group $sg_name exists"

docs/gettingstarted/installation.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,11 @@ The `Amazon EC2 API Tools`_ will be used to setup basic EC2 infrastructure. The
5757
+ ec2-create-group deis-controller -d 'Created by Deis'
5858
GROUP sg-7c40f317 deis-controller Created by Deis
5959
+ set +x
60-
Authorizing TCP ports 22,80,443 from 0.0.0.0/0...
60+
Authorizing TCP ports 22,80,443,514 from 0.0.0.0/0...
6161
+ ec2-authorize deis-controller -P tcp -p 22 -s 0.0.0.0/0
6262
+ ec2-authorize deis-controller -P tcp -p 80 -s 0.0.0.0/0
6363
+ ec2-authorize deis-controller -P tcp -p 443 -s 0.0.0.0/0
64+
+ ec2-authorize deis-controller -P tcp -p 514 -s 0.0.0.0/0
6465
+ set +x
6566
Creating new SSH key: deis-controller
6667
+ ec2-create-keypair deis-controller

0 commit comments

Comments
 (0)