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 @@ -75,6 +75,7 @@ module "datadog_lambda_forwarder" {
7575 s3_bucket_kms_arns = var. s3_bucket_kms_arns
7676 s3_buckets = var. s3_buckets
7777 s3_buckets_with_prefixes = var. s3_buckets_with_prefixes
78+ s3_notification_events = var. s3_notification_events
7879 security_group_ids = var. security_group_ids
7980 subnet_ids = var. subnet_ids
8081 tracing_config_mode = var. tracing_config_mode
Original file line number Diff line number Diff line change @@ -100,6 +100,12 @@ variable "s3_buckets_with_prefixes" {
100100 default = {}
101101}
102102
103+ variable "s3_notification_events" {
104+ type = list (string )
105+ description = " List of S3 events to trigger the Lambda notification"
106+ default = [" s3:ObjectCreated:*" , " s3:ObjectRemoved:*" ]
107+ }
108+
103109variable "s3_bucket_kms_arns" {
104110 type = list (string )
105111 description = " List of KMS key ARNs for s3 bucket encryption"
You can’t perform that action at this time.
0 commit comments