FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit dc9bafdc authored by Dr Abraham Martin's avatar Dr Abraham Martin Committed by Dr Abraham Martin
Browse files

Add support for timeout_seconds to be passed as a variable

parent 38156df5
No related branches found
No related tags found
1 merge request!8Add support for timeout_seconds to be passed as a variable
Pipeline #37081 passed
......@@ -84,6 +84,8 @@ resource "google_cloud_run_service" "webapp" {
}
}
}
timeout_seconds = var.timeout_seconds
}
}
......
......@@ -48,6 +48,11 @@ variable "memory_limit" {
default = "512M"
}
variable "timeout_seconds" {
description = "The maximum duration, in seconds, the instance is allowed for responding to a request. Default to 300. Maximum is 900."
default = 300
}
variable "allow_unauthenticated_invocations" {
description = <<EOI
If true, the webapp will allow unauthenticated invocations. If false, the webapp requires authentication
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment