Skip to content

Commit

Permalink
Merge pull request #15 from trussworks/cblkwell-fix-memory-size
Browse files Browse the repository at this point in the history
Fixing memory size
  • Loading branch information
cblkwell authored Jul 23, 2020
2 parents d0a7c1e + abf68ce commit 10518d6
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 @@ -99,7 +99,7 @@ module "s3_anti_virus" {
| lambda\_package | The name of the lambda package. Used for a directory tree and zip file. | `string` | `"anti-virus"` | no |
| lambda\_s3\_bucket | The name of the S3 bucket used to store the Lambda builds. | `string` | n/a | yes |
| lambda\_version | The version the Lambda function to deploy. | `string` | n/a | yes |
| memory\_size | Lambda memory allocation, in MB | `string` | `20488888888` | no |
| memory\_size | Lambda memory allocation, in MB | `string` | `2048` | no |
| name\_scan | Name for resources associated with anti-virus scanning | `string` | `"s3-anti-virus-scan"` | no |
| name\_update | Name for resources associated with anti-virus updating | `string` | `"s3-anti-virus-updates"` | no |
| tags | A map of tags to add to all resources. | `map(string)` | `{}` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ variable "lambda_package" {
variable "memory_size" {
description = "Lambda memory allocation, in MB"
type = string
default = 20488888888
default = 2048
}

variable "av_update_minutes" {
Expand Down

0 comments on commit 10518d6

Please sign in to comment.