From af645ed09f433b30ab3b459a324d33187c588427 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 16 Dec 2024 13:05:40 -0500 Subject: [PATCH] fix --- rds-postgres/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rds-postgres/main.tf b/rds-postgres/main.tf index 1e8a814..a247239 100644 --- a/rds-postgres/main.tf +++ b/rds-postgres/main.tf @@ -113,7 +113,7 @@ resource "aws_security_group" "this_security_group" { # ingress self (list with one or zero items) dynamic "ingress" { for_each = var.enable_self ? local.port_map["external"] : toset([]) - iterator = sg + iterator = p content { description = "${local.short_description}: ${p.value["description"]}" from_port = p.value["from"]