|
@@ -70,7 +70,7 @@ resource "aws_security_group_rule" "alb-http-in-external-c2-users" {
|
|
|
from_port = 80
|
|
|
to_port = 80
|
|
|
protocol = "tcp"
|
|
|
- cidr_blocks = each.value.cidr_blocks
|
|
|
+ cidr_blocks = each.value.cidr_blocks #tfsec:ignore:aws-vpc-no-public-ingress-sgr Intentionally allow inbound
|
|
|
security_group_id = module.elb.extra_security_group_ids[0]
|
|
|
}
|
|
|
|
|
@@ -82,6 +82,6 @@ resource "aws_security_group_rule" "https-in-external-c2-users" {
|
|
|
from_port = 443
|
|
|
to_port = 443
|
|
|
protocol = "tcp"
|
|
|
- cidr_blocks = each.value.cidr_blocks
|
|
|
+ cidr_blocks = each.value.cidr_blocks #tfsec:ignore:aws-vpc-no-public-ingress-sgr Intentionally allow inbound
|
|
|
security_group_id = module.elb.extra_security_group_ids[1]
|
|
|
}
|