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
| lambda_policies | list(string) | List of IAM Policy ARNs to attach to the lambda role. | []
94
96
| security_groups | list(string) | List of extra security group IDs to attach to the lambda. | []
95
97
| 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
98
+
| timeout | number | How long the lambda will run (in seconds) before timing out | 3 (same as terraform default)
99
+
| 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
@@ -109,4 +109,16 @@ variable "use_codedeploy" {
109
109
type=bool
110
110
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)."
111
111
default=false
112
+
}
113
+
114
+
variable"timeout" {
115
+
type=number
116
+
description="Timeout (in seconds) for lambda. Defaults to 3 (terraform default"
0 commit comments