From 466bb5c0303f39319e58e4a18fee8cdf4db4c70f Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 16 Dec 2024 10:20:48 -0500 Subject: [PATCH] fix --- emr/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emr/main.tf b/emr/main.tf index 73a5c82..c6f4deb 100644 --- a/emr/main.tf +++ b/emr/main.tf @@ -217,7 +217,7 @@ resource "aws_vpc_security_group_ingress_rule" "cidr_block" { # ingress: by prefix_list resource "aws_vpc_security_group_ingress_rule" "prefix_lists" { - for_each = { for x in local.sg_plr : x.prefix_list_label => x } + for_each = { for x in local.sg_pl : x.prefix_list_label => x } security_group_id = aws_security_group.sg[each.value.key].id description = each.value.short