From 301365f9d8a91d9ffd12a358c0f9777216bce5ed Mon Sep 17 00:00:00 2001 From: jdettmannnava <145699825+jdettmannnava@users.noreply.github.com> Date: Thu, 16 Jan 2025 11:23:11 -0500 Subject: [PATCH] Increase memory for dpc opt out export lambda (#163) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🎫 Ticket https://jira.cms.gov/browse/DPC-4460 ## 🛠 Changes Configuration of dpc opt out export memory changed from 1024 to 2048 ## ℹ️ Context Our lambda on prod started failing with `Error: Runtime exited with error: signal: killed`, and manually increasing to 2048 fixed it. ## 🧪 Validation Upped manually; lambda has run successfully since. --- terraform/services/opt-out-export/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/services/opt-out-export/main.tf b/terraform/services/opt-out-export/main.tf index 896490f4..fccaa7dc 100644 --- a/terraform/services/opt-out-export/main.tf +++ b/terraform/services/opt-out-export/main.tf @@ -31,7 +31,7 @@ locals { memory_size = { ab2d = 10240 bcda = null - dpc = 1024 + dpc = 2048 } }