From 26e406514631162e5c2cb0400f3b146012250714 Mon Sep 17 00:00:00 2001 From: Derek Cormier Date: Thu, 26 Oct 2023 21:04:36 +0200 Subject: [PATCH] fix: increase ram --- deployment/modules/webhook/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/modules/webhook/main.tf b/deployment/modules/webhook/main.tf index 47b32e2..3b45e25 100644 --- a/deployment/modules/webhook/main.tf +++ b/deployment/modules/webhook/main.tf @@ -37,7 +37,7 @@ resource "google_cloudfunctions_function" "publish_to_bcr_function" { description = "Handle incoming github events" runtime = "nodejs16" - available_memory_mb = 256 + available_memory_mb = 512 source_archive_bucket = google_storage_bucket.source_archive_bucket.name source_archive_object = google_storage_bucket_object.publish_to_bcr_function_bucket_object.name trigger_http = true