Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Update default value of reserved_concurrent_executions to -1 #39

Merged
merged 2 commits into from
Mar 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function name unique per region, for example by setting
| memory\_size | Amount of memory in MB your Lambda function can use at runtime | string | `"128"` | no |
| policy | An addional policy to attach to the Lambda function | string | `""` | no |
| publish | Whether to publish creation/change as new Lambda Function Version | string | `"false"` | no |
| reserved\_concurrent\_executions | The amount of reserved concurrent executions for this Lambda function | string | `"0"` | no |
| reserved\_concurrent\_executions | The amount of reserved concurrent executions for this Lambda function | string | `"-1"` | no |
| runtime | The runtime environment for the Lambda function | string | n/a | yes |
| source\_path | The source file or directory containing your Lambda source code | string | n/a | yes |
| tags | A mapping of tags | map | `<map>` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variable "memory_size" {
variable "reserved_concurrent_executions" {
description = "The amount of reserved concurrent executions for this Lambda function"
type = "string"
default = 0
default = -1
}

variable "runtime" {
Expand Down