From 8ec7c248359c38058111cb7cf9416aa95577c57f Mon Sep 17 00:00:00 2001 From: "cloud-guardian-sh[bot]" <265181607+cloud-guardian-sh[bot]@users.noreply.github.com> Date: Sun, 3 May 2026 06:54:09 +0000 Subject: [PATCH] fix: Right-size market-data service CPU to 1 vCPU --- terraform/modules/market-data/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/modules/market-data/main.tf b/terraform/modules/market-data/main.tf index 21e2c7bc2..01432bcaa 100644 --- a/terraform/modules/market-data/main.tf +++ b/terraform/modules/market-data/main.tf @@ -102,7 +102,7 @@ resource "google_cloud_run_v2_service" "market_data" { resources { limits = { - cpu = "0.08" + cpu = "1" # Changed from "0.08" to "1" memory = "128Mi" } cpu_idle = true