Skip to content

Commit

Permalink
fix(terraform): vol5223 add batch queue to eventbridge policy (#222)
Browse files Browse the repository at this point in the history
* fix(terraform): vol5223 add batch queue to eventbridge policy

* fix(terraform): vol5223 fix eventbridge iam syntax

* fix(terraform): vol5223 fix eventbridge iam syntax

* fix(terraform): vol5223 fix eventbridge iam syntax
  • Loading branch information
matbeales authored Aug 7, 2024
1 parent e29d53a commit 2f20506
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion infra/terraform/modules/service/batch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ module "eventbridge" {
actions = [
"batch:SubmitJob"
]
resources = [for job in module.batch.job_definitions : job.arn]
resources = concat(
[for job in module.batch.job_definitions : job.arn],
[for job in module.batch.job_queues : job.arn]
)
}
}

Expand Down

0 comments on commit 2f20506

Please sign in to comment.