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

Commit

Permalink
Update default value of reserved_concurrent_executions to -1 (#39)
Browse files Browse the repository at this point in the history
Update default value of reserved_concurrent_executions
  • Loading branch information
jeohist authored and raymondbutcher committed Mar 14, 2019
1 parent 6b5ac87 commit 6bd81fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 6bd81fe

Please sign in to comment.