resource "aws_iam_group_policy_attachment" "custom_arns" {
  count      = length(var.custom_group_policy_arns)
  group      = var.group_name
  policy_arn = element(var.custom_group_policy_arns, count.index)
}
