Skip to content

Commit 7bcfbb7

Browse files
authored
docs: Fix memory size limit (terraform-aws-modules#99)
1 parent 2e6e1ce commit 7bcfbb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ Q4: What does this error mean - `"We currently do not support adding policies fo
647647
| local\_existing\_package | The absolute path to an existing zip-file to use | `string` | `null` | no |
648648
| maximum\_event\_age\_in\_seconds | Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600. | `number` | `null` | no |
649649
| maximum\_retry\_attempts | Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2. | `number` | `null` | no |
650-
| memory\_size | Amount of memory in MB your Lambda Function can use at runtime. Valid value between 128 MB to 3008 MB, in 64 MB increments. | `number` | `128` | no |
650+
| memory\_size | Amount of memory in MB your Lambda Function can use at runtime. Valid value between 128 MB to 10,240 MB (10 GB), in 64 MB increments. | `number` | `128` | no |
651651
| number\_of\_policies | Number of policies to attach to IAM role for Lambda Function | `number` | `0` | no |
652652
| number\_of\_policy\_jsons | Number of policies JSON to attach to IAM role for Lambda Function | `number` | `0` | no |
653653
| package\_type | The Lambda deployment package type. Valid options: Zip or Image | `string` | `"Zip"` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ variable "kms_key_arn" {
8686
}
8787

8888
variable "memory_size" {
89-
description = "Amount of memory in MB your Lambda Function can use at runtime. Valid value between 128 MB to 3008 MB, in 64 MB increments."
89+
description = "Amount of memory in MB your Lambda Function can use at runtime. Valid value between 128 MB to 10,240 MB (10 GB), in 64 MB increments."
9090
type = number
9191
default = 128
9292
}

0 commit comments

Comments
 (0)