You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| log_retention_in_days | number | CloudWatch log group retention in days. Defaults to 7. | 7
97
99
| lambda_policies | list(string) | List of IAM Policy ARNs to attach to the lambda role. | []'
98
100
| use_codedeploy | bool | If true, CodeDeploy App and Deployment Group will be created and TF will not update alias to point to new versions of the Lambda (becuase CodeDeploy will do that). | false
101
+
| timeout | number | How long the lambda will run (in seconds) before timing out | 3 (same as terraform default)
102
+
| memory_size | number | Size of the memory of the lambda. CPU will scale along with it | 128 (same as terraform default)
Copy file name to clipboardExpand all lines: variables.tf
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -108,4 +108,16 @@ variable "use_codedeploy" {
108
108
type=bool
109
109
description="If true, CodeDeploy App and Deployment Group will be created and TF will not update alias to point to new versions of the Lambda (becuase CodeDeploy will do that)."
110
110
default=false
111
+
}
112
+
113
+
variable"timeout" {
114
+
type=number
115
+
description="Timeout (in seconds) for lambda. Defaults to 3 (terraform default"
0 commit comments