Skip to content

Commit

Permalink
Merge pull request #13 from kitagawa-hr/docs/issue-12
Browse files Browse the repository at this point in the history
Fix typo in documents #12
  • Loading branch information
ivankatliarchuk authored May 21, 2021
2 parents 5c82fad + f7236f5 commit 282e552
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 @@ -84,7 +84,7 @@ module lambda {
| log\_retention | Specifies the number of days you want to retain log events in the specified log group. | `number` | `1` | no |
| memory\_size | Amount of memory in MB your Lambda Function can use at runtime. Defaults to 128. | `number` | n/a | yes |
| publish | Whether to publish creation/change as new Lambda Function Version. Defaults to true. | `bool` | `true` | no |
| retry\_attempts | Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2. | `number` | `0` | no |
| retry\_attempts | Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 0. | `number` | `0` | no |
| role\_arn | IAM role attached to the Lambda Function. This governs both who / what can invoke your Lambda Function, as well as what resources our Lambda Function has access to. | `string` | n/a | yes |
| runtime | See Runtimes for valid values. | `string` | n/a | yes |
| source\_code\_hash | Used to trigger updates when file contents change. Must be set to a base64-encoded SHA256 hash of the package file specified with either filename or s3\_key. | `string` | `null` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ variable "event_age_in_seconds" {

variable "retry_attempts" {
default = 0
description = "Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2."
description = "Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 0."
type = number
}

Expand Down

0 comments on commit 282e552

Please sign in to comment.