Skip to content

Commit 282e552

Browse files
Merge pull request #13 from kitagawa-hr/docs/issue-12
Fix typo in documents #12
2 parents 5c82fad + f7236f5 commit 282e552

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
@@ -84,7 +84,7 @@ module lambda {
8484
| log\_retention | Specifies the number of days you want to retain log events in the specified log group. | `number` | `1` | no |
8585
| memory\_size | Amount of memory in MB your Lambda Function can use at runtime. Defaults to 128. | `number` | n/a | yes |
8686
| publish | Whether to publish creation/change as new Lambda Function Version. Defaults to true. | `bool` | `true` | no |
87-
| 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 |
87+
| 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 |
8888
| 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 |
8989
| runtime | See Runtimes for valid values. | `string` | n/a | yes |
9090
| 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 |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ variable "event_age_in_seconds" {
9494

9595
variable "retry_attempts" {
9696
default = 0
97-
description = "Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2."
97+
description = "Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 0."
9898
type = number
9999
}
100100

0 commit comments

Comments
 (0)