Skip to content

Commit

Permalink
Fix users type for IAM policy attachment
Browse files Browse the repository at this point in the history
  • Loading branch information
tasharnvb committed Oct 15, 2019
1 parent d1b0e19 commit 94f2f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,6 @@ EOF

resource aws_iam_policy_attachment "msk_iam_policy_attachment" {
name = "${var.name}-policy-attachment"
users = aws_iam_user.msk_iam_user.name
users = [aws_iam_user.msk_iam_user.name]
policy_arn = aws_iam_policy.msk_iam_policy.arn
}

0 comments on commit 94f2f2f

Please sign in to comment.