From a18e04972e0e3a9412fca6d3895829cf16c5e5c9 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 16 Dec 2024 12:42:46 -0500 Subject: [PATCH] fix --- rds-postgres/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rds-postgres/main.tf b/rds-postgres/main.tf index 49bf86e..7d2efd7 100644 --- a/rds-postgres/main.tf +++ b/rds-postgres/main.tf @@ -105,7 +105,7 @@ resource "aws_security_group" "this_security_group" { from_port = 0 to_port = 0 protocol = -1 - security_groups = [local.ingress_sg] + security_groups = local.ingress_sg } } @@ -143,7 +143,7 @@ resource "aws_security_group" "this_security_group" { from_port = 0 to_port = 0 protocol = -1 - security_groups = [local.egress_sg] + security_groups = local.egress_sg } }