This module creates mutual AWS security group rules where matching ingress and egress to allow traffic between two security groups. This makes it easier to create security network configuration in your AWS environments.
HCLMIT
Terraform Mutual Security Groups Rules Module
This module creates mutual AWS security group rules where matching ingress
and egress to allow traffic between two security groups. This makes it easier
to create security network configuration in your AWS environments.
rules=[
{
source_sg_id ="sg-903004f8"
target_sg_id ="sg-33bb22aa"
destination_port ="443"
protocol ="udp"# Optional, defaults to tcp
description ="Allow QUIC/HTTP3 from NLB"# optional, but recommended
},
{
source_sg_id ="sg-1a2b3c4d"
target_sg_id ="sg-33bb22aa"
destination_port ="8080"
to_port ="8088"# Optional, only required for port ranges. Specifies the upper end of the range.
}
]