We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc8ba22 commit 00f8a2dCopy full SHA for 00f8a2d
infrastructure/terraform/modules/backend-api/module_lambda_event_publisher.tf
@@ -25,9 +25,10 @@ module "lambda_event_publisher" {
25
}
26
27
lambda_env_vars = {
28
- SNS_TOPIC_ARN = coalesce(var.sns_topic_arn, aws_sns_topic.main.arn)
29
- TEMPLATES_TABLE_NAME = aws_dynamodb_table.templates.name
30
- EVENT_SOURCE = "//notify.nhs.uk/${var.component}/${var.group}/${var.environment}"
+ SNS_TOPIC_ARN = coalesce(var.sns_topic_arn, aws_sns_topic.main.arn)
+ ROUTING_CONFIG_TABLE_NAME = aws_dynamodb_table.routing_configuration.name
+ TEMPLATES_TABLE_NAME = aws_dynamodb_table.templates.name
31
+ EVENT_SOURCE = "//notify.nhs.uk/${var.component}/${var.group}/${var.environment}"
32
33
34
function_s3_bucket = var.function_s3_bucket
0 commit comments