resource "aws_iam_group_policy_attachment" "custom_arns" {
  for_each = toset(var.custom_group_policy_arns)
  group      = var.group_name
  policy_arn = each.key
}