File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
infrastructure/nonprod/networking Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,15 @@ resource "aws_security_group" "fhir_etl_sg" {
144144 vpc_id = var. vpc_id
145145}
146146
147+ resource "aws_vpc_security_group_ingress_rule" "fhir_etl_sg_internal_traffic" {
148+ description = " Allow traffic between entities in the same group"
149+ security_group_id = aws_security_group. fhir_etl_sg . id
150+ from_port = 0
151+ to_port = 0
152+ ip_protocol = " tcp"
153+ referenced_security_group_id = aws_security_group. fhir_etl_sg . id
154+ }
155+
147156resource "aws_vpc_security_group_ingress_rule" "dagster_alb_security_group_to_dagster_website" {
148157 description = " Allows the application load balancer to access the dagster web ui"
149158 security_group_id = aws_security_group. fhir_etl_sg . id
You can’t perform that action at this time.
0 commit comments