You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: terraform/run-service/variables.tf
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ variable "available_memory" {
29
29
description="The amount of memory for the Cloud Function"
30
30
}
31
31
variable"available_cpu" {
32
-
default="1"
32
+
default="2"
33
33
type=string
34
34
description="The amount of CPU for the Cloud Function"
35
35
}
@@ -39,7 +39,7 @@ variable "ingress_settings" {
39
39
description="String value that controls what traffic can reach the function. Check ingress documentation to see the impact of each settings value. Changes to this field will recreate the cloud function."
40
40
}
41
41
variable"timeout" {
42
-
default="60s"
42
+
default="120s"
43
43
type=string
44
44
description="Timeout for the service. Default value is 60 seconds. Cannot be more than 540 seconds."
45
45
}
@@ -56,7 +56,7 @@ variable "min_instances" {
56
56
variable"max_instance_request_concurrency" {
57
57
description="(Optional) The limit on the maximum number of requests that an instance can handle simultaneously. This can be used to control costs when scaling. Defaults to 1."
0 commit comments