From 4b6037e170620f2c29e823f77cbc8bb09e90fcc6 Mon Sep 17 00:00:00 2001 From: Luigi Di Fraia <93160889+luigidifraiawork@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:00:56 +0100 Subject: [PATCH] chore: update two rule descriptions as per Zoltan's comment --- .../environments/xhibit-portal/network-infrastructure.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/environments/xhibit-portal/network-infrastructure.tf b/terraform/environments/xhibit-portal/network-infrastructure.tf index 90545aa87b4..be3b4d50e95 100644 --- a/terraform/environments/xhibit-portal/network-infrastructure.tf +++ b/terraform/environments/xhibit-portal/network-infrastructure.tf @@ -434,7 +434,7 @@ resource "aws_security_group_rule" "portal-http-from-waf-lb" { depends_on = [aws_security_group.waf_lb, aws_security_group.portal_server] security_group_id = aws_security_group.portal_server.id type = "ingress" - description = "allow all traffic from WAF LB" + description = "allow HHTP traffic from WAF LB" from_port = 80 to_port = 80 protocol = "TCP" @@ -445,7 +445,7 @@ resource "aws_security_group_rule" "portal-http-to-waf-lb" { depends_on = [aws_security_group.waf_lb, aws_security_group.portal_server] security_group_id = aws_security_group.portal_server.id type = "egress" - description = "allow all traffic to WAF LB" + description = "allow HTTP traffic to WAF LB" from_port = 80 to_port = 80 protocol = "TCP"