File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ module "lambda_api" {
109
109
| public_subnet_ids | list(string) | List of subnet IDs for the ALB. | |
110
110
| tags | map(string) | A map of AWS Tags to attach to each resource created | {} |
111
111
| role_permissions_boundary_arn | string | IAM Role Permissions Boundary ARN | |
112
- | log_retention_in_days | number | CloudWatch log group retention in days. Defaults to 7 . | 7 |
112
+ | log_retention_in_days | number | CloudWatch log group retention in days. Defaults to 120 . | 120 |
113
113
| lambda_policies | list(string) | List of IAM Policy ARNs to attach to the lambda role. | [ ] |
114
114
| lambda_layers | list(string) | List of Lambda Layer Version ARNs (maximum of 5) to attach to your function. | [ ] |
115
115
| timeout | number | How long the lambda will run (in seconds) before timing out | 3 (same as terraform default) |
Original file line number Diff line number Diff line change @@ -114,8 +114,8 @@ variable "role_permissions_boundary_arn" {
114
114
115
115
variable "log_retention_in_days" {
116
116
type = number
117
- description = " CloudWatch log group retention in days. Defaults to 7 ."
118
- default = 7
117
+ description = " CloudWatch log group retention in days. Defaults to 120 ."
118
+ default = 120
119
119
}
120
120
121
121
variable "lambda_policies" {
You can’t perform that action at this time.
0 commit comments