From f7eca16827f8c0f675945030ae1819a369f3b733 Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 26 Apr 2022 10:35:03 -0400 Subject: [PATCH] fix --- terraform-state/group.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform-state/group.tf b/terraform-state/group.tf index 76fab65..07faf8a 100644 --- a/terraform-state/group.tf +++ b/terraform-state/group.tf @@ -9,7 +9,7 @@ resource "aws_iam_group" "terraform" { } resource "aws_iam_group_policy_attachment" "this" { - for_each = toset(ocal.group_policies) + for_each = toset(local.group_policies) group = aws_iam_group.terraform.name policy_arn = each.key }