Skip to content

Commit

Permalink
🔧 Modify SNS topic subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary-H9 committed Apr 3, 2024
1 parent d5416de commit 948f76b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/environments/analytical-platform-ingestion/sns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ module "quarantined_topic" {
}

subscriptions = {
s3 = {
lambda = {
protocol = "lambda"
endpoint = module.transfer_lambda.lambda_function_arn # to be corrected
endpoint = module.notify_quarantined_lambda.lambda_function_arn
}
}
}
Expand All @@ -51,7 +51,7 @@ module "transferred_topic" {
subscriptions = {
lambda = {
protocol = "lambda"
endpoint = module.transfer_lambda.lambda_function_arn
endpoint = module.notify_transferred_lambda.lambda_function_arn
}
}
}

0 comments on commit 948f76b

Please sign in to comment.