Skip to content

Commit

Permalink
chore(*): update for cfn for master, add inbound https to sg
Browse files Browse the repository at this point in the history
  • Loading branch information
tbash committed Jan 16, 2019
1 parent d4f2e83 commit 6efb2e9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/cfn
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd -P)"

STACK_NAME="${STACK_NAME:-ellie}"
APP_NAME="${APP_NAME:-ellie}"
DOMAIN_NAME="ellie.tba.sh"
GITHUB_BRANCH="aws-setup"
DOMAIN_NAME="ellie-app.com"
GITHUB_BRANCH="master"
GITHUB_USER="ellie-app"
GITHUB_REPO="ellie"

Expand Down
10 changes: 10 additions & 0 deletions templates/infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,16 @@ Resources:
FromPort: '4000'
ToPort: '4000'

SecurityGroupALBIngressPublicHTTPS:
Type: AWS::EC2::SecurityGroupIngress
Description: "Allow any HTTPS traffic on port 443 to ALBs"
Properties:
CidrIp: 0.0.0.0/0
GroupId: !GetAtt SecurityGroupALB.GroupId
IpProtocol: tcp
FromPort: '443'
ToPort: '443'

SecurityGroupALBIngressPublicHTTP:
Type: AWS::EC2::SecurityGroupIngress
Description: "Allow any HTTP traffic on port 80 to ALBs"
Expand Down

0 comments on commit 6efb2e9

Please sign in to comment.