File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ module "lambda" {
83
83
runtime = var. runtime
84
84
iam_policy_description = var. iam_policy_description
85
85
ephemeral_storage_size = var. ephemeral_storage_size
86
+ source_mapping_enabled = var. source_mapping_enabled
86
87
87
88
custom_iam_policy_arns = [
88
89
" arn:aws:iam::aws:policy/job-function/ViewOnlyAccess" ,
Original file line number Diff line number Diff line change @@ -31,3 +31,9 @@ variable "ephemeral_storage_size" {
31
31
description = " The amount of storage available to the function at runtime. Defaults to 512."
32
32
default = 512
33
33
}
34
+
35
+ variable "source_mapping_enabled" {
36
+ type = bool
37
+ description = " Enables the source mapping to set a Kinesis stream, a DynamoDB stream, or SQS queue as trigger for lambda."
38
+ default = false
39
+ }
You can’t perform that action at this time.
0 commit comments