Skip to content

Commit

Permalink
Update locals_security_groups.tf
Browse files Browse the repository at this point in the history
egress added
  • Loading branch information
IjazMoJ authored Oct 4, 2023
1 parent 7db181b commit 84d2870
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion terraform/environments/planetfm/locals_security_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,19 @@ locals {
security_groups = []
}
}



egress = {
all = {
description = "Allow all egress"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
security_groups = []
}
}


}
}
Expand Down

0 comments on commit 84d2870

Please sign in to comment.