Skip to content

Commit

Permalink
fix: policy arn
Browse files Browse the repository at this point in the history
  • Loading branch information
jsterner30 committed Apr 11, 2024
1 parent 843ace4 commit 1abb50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iac/modules/app/assemblerTriggerLambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resource "aws_iam_policy" "run_assembler" {
resource "aws_iam_role_policy_attachment" "run_assembler" {
depends_on = [aws_iam_policy.run_assembler, aws_iam_role.CdnBuildInvokerRole]
role = aws_iam_role.CdnBuildInvokerRole.name
policy_arn = aws_iam_policy.run_assembler
policy_arn = aws_iam_policy.run_assembler.arn
}

resource "aws_lambda_function" "WebhookFunc" {
Expand Down

0 comments on commit 1abb50f

Please sign in to comment.