Commit a8cba4e
fix: Add missing webhook_events_workflow_job_queue_policy to multi-runner queue (#3848)
Add missing
[aws_sqs_queue_policy.webhook_events_workflow_job_queue_policy](https://github.com/philips-labs/terraform-aws-github-runner/blob/main/main.tf#L54-L58)
to multi-runner module queue.tf:
```
resource "aws_sqs_queue_policy" "webhook_events_workflow_job_queue_policy" {
count = var.enable_workflow_job_events_queue ? 1 : 0
queue_url = aws_sqs_queue.webhook_events_workflow_job_queue[0].id
policy = data.aws_iam_policy_document.deny_unsecure_transport.json
}
```
---------
Co-authored-by: Niek Palm <[email protected]>1 parent 0ddeefc commit a8cba4e
1 file changed
+6
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
30 | 29 | | |
31 | 30 | | |
32 | 31 | | |
| |||
71 | 70 | | |
72 | 71 | | |
73 | 72 | | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
74 | 79 | | |
75 | 80 | | |
76 | 81 | | |
| |||
0 commit comments