Skip to content

Commit

Permalink
Merge pull request #1827 from cloud-gov/csb-concourse-fix
Browse files Browse the repository at this point in the history
fix: User field needs user name, not user object
  • Loading branch information
jameshochadel authored Feb 10, 2025
2 parents 309cee3 + 6ae8553 commit af7ef36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/modules/csb/concourse_iam/concourse.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_iam_user" "concourse_csb" {
}

resource "aws_iam_user_policy_attachment" "concourse_csb" {
user = aws_iam_user.concourse_csb
user = aws_iam_user.concourse_csb.name
policy_arn = aws_iam_policy.concourse_csb.arn
}

Expand Down

0 comments on commit af7ef36

Please sign in to comment.