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
description="The name of the method within your code that Lambda calls to execute your function."
50
+
description=<<EOS
51
+
The name of the method within your code that Lambda calls to execute your function.
52
+
EOS
41
53
}
42
54
43
55
variable"layers" {
44
56
type=list(string)
45
57
default=[]
46
58
47
-
description="List of up to five Lambda layer ARNs."
59
+
description=<<EOS
60
+
List of up to five Lambda layer ARNs.
61
+
EOS
48
62
}
49
63
50
64
variable"memory_size" {
51
65
type=number
52
66
53
-
description="The amount of memory (in MB) available to the function at runtime. Increasing the Lambda function memory also increases its CPU allocation."
67
+
description=<<EOS
68
+
The amount of memory (in MB) available to the function at runtime. Increasing the Lambda function memory also increases its CPU allocation.
69
+
EOS
54
70
}
55
71
56
72
variable"reserved_concurrent_executions" {
57
73
type=number
58
74
59
-
description="The number of simultaneous executions to reserve for the Lambda function."
75
+
description=<<EOS
76
+
The number of simultaneous executions to reserve for the Lambda function.
77
+
EOS
60
78
}
61
79
62
80
variable"runtime" {
63
81
type=string
64
82
65
-
description="The identifier of the Lambda function [runtime](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html)."
83
+
description=<<EOS
84
+
The identifier of the Lambda function [runtime](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html).
85
+
EOS
66
86
}
67
87
68
88
variable"secret_environment_variables" {
@@ -82,20 +102,26 @@ variable "source_dir" {
82
102
type=string
83
103
default=null
84
104
85
-
description="Path of the directory which shall be packed as code of the Lambda function. Conflicts with `archive_file`."
105
+
description=<<EOS
106
+
Path of the directory which shall be packed as code of the Lambda function. Conflicts with `archive_file`.
107
+
EOS
86
108
}
87
109
88
110
variable"tags" {
89
111
type=map(string)
90
112
default={}
91
113
92
-
description="Tags which will be assigned to all resources."
114
+
description=<<EOS
115
+
Map of tags assigned to all AWS resources created by this module.
116
+
EOS
93
117
}
94
118
95
119
variable"timeout" {
96
120
type=number
97
121
98
-
description="The amount of time (in seconds) per execution before stopping it."
122
+
description=<<EOS
123
+
The amount of time (in seconds) per execution before stopping it.
0 commit comments