Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (8.1.1)
activesupport (8.1.3)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
Expand All @@ -18,9 +18,9 @@ GEM
public_suffix (>= 2.0.2, < 8.0)
base64 (0.3.0)
bigdecimal (4.1.2)
cgi (0.5.1)
cgi (0.5.2)
colorator (1.1.0)
concurrent-ruby (1.3.6)
concurrent-ruby (1.3.7)
connection_pool (3.0.2)
csv (3.3.5)
drb (2.2.3)
Expand All @@ -34,17 +34,17 @@ GEM
ffi (1.17.4-x86_64-linux-gnu)
forwardable-extended (2.6.0)
gemoji (4.1.0)
google-protobuf (4.34.1-arm64-darwin)
google-protobuf (4.35.1-arm64-darwin)
bigdecimal
rake (~> 13.3)
google-protobuf (4.34.1-x86_64-linux-gnu)
google-protobuf (4.35.1-x86_64-linux-gnu)
bigdecimal
rake (~> 13.3)
html-pipeline (2.14.3)
activesupport (>= 2)
nokogiri (>= 1.4)
http_parser.rb (0.8.1)
i18n (1.14.8)
i18n (1.15.2)
concurrent-ruby (~> 1.0)
jekyll (4.4.1)
addressable (~> 2.4)
Expand Down Expand Up @@ -83,7 +83,7 @@ GEM
gemoji (>= 3, < 5)
html-pipeline (~> 2.2)
jekyll (>= 3.0, < 5.0)
json (2.19.5)
json (2.20.0)
just-the-docs (0.12.0)
jekyll (>= 3.8.5)
jekyll-include-cache
Expand All @@ -104,15 +104,16 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (6.0.0)
minitest (6.0.6)
drb (~> 2.0)
prism (~> 1.5)
nokogiri (1.19.3-arm64-darwin)
nokogiri (1.19.4-arm64-darwin)
racc (~> 1.4)
nokogiri (1.19.3-x86_64-linux-gnu)
nokogiri (1.19.4-x86_64-linux-gnu)
racc (~> 1.4)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
prism (1.6.0)
prism (1.9.0)
public_suffix (7.0.5)
racc (1.8.1)
rake (13.4.2)
Expand All @@ -122,9 +123,9 @@ GEM
rexml (3.4.4)
rouge (4.7.0)
safe_yaml (1.0.5)
sass-embedded (1.99.0-arm64-darwin)
sass-embedded (1.101.0-arm64-darwin)
google-protobuf (~> 4.31)
sass-embedded (1.99.0-x86_64-linux-gnu)
sass-embedded (1.101.0-x86_64-linux-gnu)
google-protobuf (~> 4.31)
securerandom (0.4.1)
terminal-table (3.0.2)
Expand Down Expand Up @@ -152,4 +153,4 @@ DEPENDENCIES
wdm (~> 0.1.1)

BUNDLED WITH
2.5.10
4.0.9
2 changes: 2 additions & 0 deletions infrastructure/terraform/modules/eventpub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@

| Name | Description |
|------|-------------|
| <a name="output_dlq"></a> [dlq](#output\_dlq) | EventPub DLQ name and ARN |
| <a name="output_publishing_anomaly_alarm"></a> [publishing\_anomaly\_alarm](#output\_publishing\_anomaly\_alarm) | CloudWatch anomaly detection alarm details for SNS publishing |
| <a name="output_s3_bucket_event_cache"></a> [s3\_bucket\_event\_cache](#output\_s3\_bucket\_event\_cache) | S3 Bucket ARN and Name for event cache |
| <a name="output_sns_topic"></a> [sns\_topic](#output\_sns\_topic) | SNS Topic ARN and Name |
| <a name="output_sqs_queue"></a> [sqs\_queue](#output\_sqs\_queue) | EventPub SQS queue name, ARN, and DLQ details |

<!-- vale on -->
<!-- markdownlint-enable -->
Expand Down
18 changes: 18 additions & 0 deletions infrastructure/terraform/modules/eventpub/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ output "sns_topic" {
}
}

output "dlq" {
description = "EventPub DLQ name and ARN"
value = {
arn = aws_sqs_queue.dlq.arn
name = aws_sqs_queue.dlq.name
}
}

output "sqs_queue" {
description = "EventPub SQS queue name, ARN, and DLQ details"
value = {
arn = module.sqs_queue.sqs_queue_arn
name = module.sqs_queue.sqs_queue_name
dlq_arn = module.sqs_queue.sqs_dlq_arn
dlq_name = module.sqs_queue.sqs_dlq_name
}
}

output "s3_bucket_event_cache" {
description = "S3 Bucket ARN and Name for event cache"
value = var.enable_event_cache ? {
Expand Down