Skip to content

Commit 26c6955

Browse files
Merge pull request #49 from PythonFloripa/fix/maximum_concurrency_builder_queue_one
fix: aumentar o tempo limite da função Lambda para 900 segundos
2 parents 0185a25 + 706b971 commit 26c6955

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

terraform/env/dev/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ variable "lambda_image_tag" {
6363
variable "lambda_timeout" {
6464
description = "Timeout da função Lambda em segundos"
6565
type = number
66-
default = 60
66+
default = 900
6767
}
6868

6969
variable "lambda_memory_size" {

terraform/modules/05.lambda/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ variable "image_tag" {
6464
variable "lambda_timeout" {
6565
description = "Timeout da função Lambda em segundos"
6666
type = number
67-
default = 360
67+
default = 900
6868
}
6969

7070
variable "lambda_memory_size" {

terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ variable "lambda_image_tag" {
6363
variable "lambda_timeout" {
6464
description = "Timeout da função Lambda em segundos"
6565
type = number
66-
default = 60
66+
default = 900
6767
}
6868

6969
variable "lambda_memory_size" {

0 commit comments

Comments
 (0)