Skip to content

Commit

Permalink
comment allow all out rule
Browse files Browse the repository at this point in the history
  • Loading branch information
rwhite27 committed Jul 6, 2023
1 parent 3e180ef commit a10d3d1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions terraform/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,14 @@ resource "aws_security_group_rule" "allow_all_traffic_in" {
security_group_id = "${var.eks_vpc_security_group_id}"
}

resource "aws_security_group_rule" "allow_all_traffic_out" {
description = "Node all egress"
protocol = "-1"
from_port = 0
to_port = 0
type = "egress"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${var.eks_vpc_security_group_id}"
}
# resource "aws_security_group_rule" "allow_all_traffic_out" {
# description = "Node all egress"
# protocol = "-1"
# from_port = 0
# to_port = 0
# type = "egress"
# cidr_blocks = ["0.0.0.0/0"]
# security_group_id = "${var.eks_vpc_security_group_id}"
# }


0 comments on commit a10d3d1

Please sign in to comment.