Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Grzeskowiak committed Feb 5, 2024
1 parent b3ee3b0 commit ba2d32f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions terraform/environments/delius-mis/temp-ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,6 @@ resource "aws_security_group" "example_ec2_sg" {
)
}

resource "aws_vpc_security_group_egress_rule" "allow_http_traffic_ipv4" {
for_each = toset(["80", "443"])

security_group_id = aws_security_group.example_ec2_sg.id
cidr_ipv4 = "0.0.0.0/0"
ip_protocol = "tcp"
from_port = each.key
to_port = each.key
}

resource "aws_vpc_security_group_egress_rule" "allow_http_traffic" {
for_each = toset(["80", "443"])

Expand Down

0 comments on commit ba2d32f

Please sign in to comment.