From 1f1c35bbab50b9bcc97aace22e71bae1f006f2e2 Mon Sep 17 00:00:00 2001 From: Ben Larabie Date: Tue, 17 Dec 2024 10:18:46 -0500 Subject: [PATCH] renaming document download for prod (#1702) --- aws/eks/cloudwatch_queries.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/eks/cloudwatch_queries.tf b/aws/eks/cloudwatch_queries.tf index c3e90c2df..19aca7a0a 100644 --- a/aws/eks/cloudwatch_queries.tf +++ b/aws/eks/cloudwatch_queries.tf @@ -2,7 +2,7 @@ locals { celery_name = var.env == "production" ? "celery" : "notify-celery" admin_name = var.env == "production" ? "admin" : "notify-admin" api_name = var.env == "production" ? "api" : "notify-api" - document_download_name = var.env == "production" ? "document-download" : "notify-document-download" + document_download_name = var.env == "production" ? "document-download-api" : "notify-document-download" documentation_name = var.env == "production" ? "documentation" : "notify-documentation" }