Skip to content

Commit

Permalink
fix: set a higher default timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Julen Dixneuf committed Apr 12, 2024
1 parent ca0948d commit c9865f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ module "aws_start_stop_scheduler" {
tag_value = "staging",
}
]
# to adjust if you have a lot of resources to manage
# lamda_timeout = 600
}
```

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "tags" {
}

variable "lambda_timeout" {
default = 10
default = 120
description = "Amount of time your Lambda Function has to run in seconds."
type = number

Expand Down

0 comments on commit c9865f6

Please sign in to comment.