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
{{ message }}
This repository was archived by the owner on Aug 2, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: modules/lambda/variables.tf
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,11 @@ variable "publish" {
45
45
default=false
46
46
}
47
47
48
+
variable"reserved_concurrent_executions" {
49
+
description="The amount of reserved concurrent executions for this lambda function. A value of 0 disables lambda from being triggered and -1 removes any concurrency limitations. Defaults to Unreserved Concurrency Limits -1."
50
+
default="-1"
51
+
}
52
+
48
53
variable"tags" {
49
54
description="A mapping of tags to assign to the Lambda function."
Copy file name to clipboardExpand all lines: variables.tf
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,11 @@ variable "publish" {
62
62
default=true
63
63
}
64
64
65
+
variable"reserved_concurrent_executions" {
66
+
description="The amount of reserved concurrent executions for this lambda function. A value of 0 disables lambda from being triggered and -1 removes any concurrency limitations. Defaults to Unreserved Concurrency Limits -1."
67
+
default="-1"
68
+
}
69
+
65
70
variable"runtime" {
66
71
description="The runtime environment for the Lambda function you are uploading. Defaults to go1.x"
0 commit comments