From e938b851f6b70a3c62328abf886d2204a3ea6ce0 Mon Sep 17 00:00:00 2001 From: miguelpuiggarcia Date: Thu, 1 Feb 2024 06:22:25 +0000 Subject: [PATCH] Start up probe settings --- gcp/cloud-run-v2/variables.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcp/cloud-run-v2/variables.tf b/gcp/cloud-run-v2/variables.tf index c5e9566..736d65c 100644 --- a/gcp/cloud-run-v2/variables.tf +++ b/gcp/cloud-run-v2/variables.tf @@ -129,27 +129,27 @@ variable "secrets" { # Startup probe variable "startup_probe_initial_delay" { description = "Initial delay seconds for the startup probe" - default = 3 + default = 20 } variable "startup_probe_timeout" { description = "Timeout seconds for the startup probe" - default = 1 + default = 5 } variable "timeout" { description = "Specifies the time within which a response must be returned by services deployed to Cloud Run" - default = "300s" + default = "600s" } variable "startup_probe_period" { description = "Period seconds for the startup probe" - default = 3 + default = 30 } variable "startup_probe_failure_threshold" { description = "Failure threshold for the startup probe" - default = 1 + default = 3 } variable "startup_probe_port" {