Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Dec 16, 2024
1 parent 466bb5c commit 49625ac
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions emr/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ resource "aws_vpc_security_group_egress_rule" "all" {

security_group_id = each.value
description = "ALL"
from_port = 0
to_port = 0
ip_protocol = -1
# cidr_block = local.egress_networks
cidr_ipv4 = local.n_all[0]
Expand All @@ -185,8 +183,6 @@ resource "aws_vpc_security_group_ingress_rule" "self" {

security_group_id = each.value
description = "self"
from_port = 0
to_port = 0
ip_protocol = -1
referenced_security_group_id = each.value
}
Expand All @@ -197,8 +193,6 @@ resource "aws_vpc_security_group_ingress_rule" "security_group" {

security_group_id = aws_security_group.sg[each.value.key].id
description = "self"
from_port = 0
to_port = 0
ip_protocol = -1
referenced_security_group_id = aws_security_group.sg[each.value.security_group_name].id
}
Expand Down

0 comments on commit 49625ac

Please sign in to comment.