Hi, I cannot differentiate between aws_iam_user_policy_attachment and aws_iam_policy_attachment, and I have tried to use aws_iam_policy_attachment, but I was not able to use it. There was an error in ```
resource “aws_iam_policy_attachment” “test-attach” {
name = “test-attachment”
users = [aws_iam_user.user.name]
roles = [aws_iam_role.role.name]
groups = [aws_iam_group.group.name]
policy_arn = aws_iam_policy.policy.arn
}