Skip to content

Commit

Permalink
fix(forwarder): output queue ARN
Browse files Browse the repository at this point in the history
This is needed in order for other modules to trigger the forwarder by
queuing tasks for the lambda to process.
  • Loading branch information
jta committed Feb 8, 2024
1 parent 9b578e4 commit f9f54af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/forwarder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ No modules.

## Outputs

No outputs.
| Name | Description |
|------|-------------|
| <a name="output_queue_arn"></a> [queue\_arn](#output\_queue\_arn) | SQS Queue ARN |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

## License
Expand Down
4 changes: 4 additions & 0 deletions modules/forwarder/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
output "queue_arn" {
description = "SQS Queue ARN"
value = aws_sqs_queue.this.arn
}

0 comments on commit f9f54af

Please sign in to comment.