Skip to content

Commit

Permalink
Merge pull request #53 from NandosUK/run-boost
Browse files Browse the repository at this point in the history
Start up probe settings
  • Loading branch information
miguelpuiggarcia authored Feb 1, 2024
2 parents 9d08596 + e938b85 commit cece1c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gcp/cloud-run-v2/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit cece1c5

Please sign in to comment.