Skip to content

Commit

Permalink
use correct env var name, as referred to in terraform for relation em…
Browse files Browse the repository at this point in the history
…bedder
  • Loading branch information
kenoir committed Jan 9, 2025
1 parent 8521802 commit 8aa0ea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
aws.metrics.namespace=${?metrics_namespace}
aws.sqs.queue.url=${?queue_url}
aws.sqs.queue.parallelism=${?queue_parallelism}
aws.sns.topic.arn=${?topic_arn}
aws.sns.topic.arn=${?output_topic_arn}
es.merged-works.index=${?es_merged_index}
es.works.scroll.complete_tree=${?complete_tree_scroll_size}
es.works.scroll.affected_works=${?affected_works_scroll_size}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "relation_embedder" {
queue_visibility_timeout_seconds = 30 * 60

env_vars = {
topic_arn = module.relation_embedder_output_topic.arn
output_topic_arn = module.relation_embedder_output_topic.arn

es_merged_index = local.es_works_merged_index
es_denormalised_index = local.es_works_denormalised_index
Expand Down

0 comments on commit 8aa0ea4

Please sign in to comment.