From 81e4b816f39c34fab8a5d78e8b854c43aed7dbd2 Mon Sep 17 00:00:00 2001 From: AlexTraxinger <22731251+AlexTraxinger@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:59:33 -0500 Subject: [PATCH] fix: Reverts endpoint variable change from e95cde8 (#240) fix: reverts endpoint variable change from e95cde8 --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 401d33ce..6493fd70 100644 --- a/main.tf +++ b/main.tf @@ -73,7 +73,7 @@ resource "aws_sns_topic_subscription" "sns_notify_slack" { topic_arn = local.sns_topic_arn protocol = "lambda" - endpoint = module.lambda.lambda_function_qualified_arn + endpoint = module.lambda.lambda_function_arn filter_policy = var.subscription_filter_policy filter_policy_scope = var.subscription_filter_policy_scope }