From b42a425d16300b6541eac1c86881147582b4769e Mon Sep 17 00:00:00 2001
From: prakhar1985 <31232641+prakhar1985@users.noreply.github.com>
Date: Thu, 27 Feb 2020 03:03:50 +0100
Subject: [PATCH] Allowed port 80 in SG (#1196)

---
 ansible/configs/ansible-tower-implementation/default_vars_osp.yml |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/ansible/configs/ansible-tower-implementation/default_vars_osp.yml b/ansible/configs/ansible-tower-implementation/default_vars_osp.yml
index 53c1607..788bbe5 100644
--- a/ansible/configs/ansible-tower-implementation/default_vars_osp.yml
+++ b/ansible/configs/ansible-tower-implementation/default_vars_osp.yml
@@ -35,13 +35,20 @@
 security_groups:
   - name: TowerSG
     rules:
-      - name: SatHTTPSPorts
+      - name: TowerHTTPSPorts
         description: "HTTPS Public"
         from_port: 443
         to_port: 443
         protocol: tcp
         cidr: "0.0.0.0/0"
         rule_type: Ingress
+      - name: TowerHTTPPorts
+        description: "HTTP Public"
+        from_port: 80 
+        to_port: 80
+        protocol: tcp
+        cidr: "0.0.0.0/0"
+        rule_type: Ingress
       - name: BastionUDPPorts
         description: "Only from bastion"
         from_port: 1

--
Gitblit v1.9.3