Skip to content

Commit

Permalink
chore: update two rule descriptions as per Zoltan's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
luigidifraiawork committed Sep 25, 2024
1 parent 405f57a commit 4b6037e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 4b6037e

Please sign in to comment.