This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add missing webhook_events_workflow_job_queue_policy to multi-ru…
…nner 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]>
- Loading branch information