From 84d2870945ba05c9c0d39a34098a0b763988fdb7 Mon Sep 17 00:00:00 2001 From: IjazMoJ <134407207+IjazMoJ@users.noreply.github.com> Date: Wed, 4 Oct 2023 11:56:45 +0100 Subject: [PATCH] Update locals_security_groups.tf egress added --- .../environments/planetfm/locals_security_groups.tf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/terraform/environments/planetfm/locals_security_groups.tf b/terraform/environments/planetfm/locals_security_groups.tf index 2fdfd725cc1..a0ca6802580 100644 --- a/terraform/environments/planetfm/locals_security_groups.tf +++ b/terraform/environments/planetfm/locals_security_groups.tf @@ -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 = [] + } + } + } }