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
Copy file name to clipboardExpand all lines: infrastructure/terraform/components/dl/README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,15 @@ No requirements.
20
20
| <aname="input_default_cloudwatch_event_bus_name"></a> [default\_cloudwatch\_event\_bus\_name](#input\_default\_cloudwatch\_event\_bus\_name)| The name of the default cloudwatch event bus. This is needed as GuardDuty Scan Result events are sent to the default bus |`string`|`"default"`| no |
21
21
| <aname="input_default_tags"></a> [default\_tags](#input\_default\_tags)| A map of default tags to apply to all taggable resources within the component |`map(string)`|`{}`| no |
22
22
| <aname="input_enable_dynamodb_delete_protection"></a> [enable\_dynamodb\_delete\_protection](#input\_enable\_dynamodb\_delete\_protection)| Enable DynamoDB Delete Protection on all Tables |`bool`|`true`| no |
23
+
| <aname="input_enable_event_anomaly_detection"></a> [enable\_event\_anomaly\_detection](#input\_enable\_event\_anomaly\_detection)| Enable CloudWatch anomaly detection alarm for core notifier queue message reception |`bool`|`true`| no |
24
+
| <aname="input_enable_event_cache"></a> [enable\_event\_cache](#input\_enable\_event\_cache)| Enable caching of events to an S3 bucket |`bool`|`true`| no |
23
25
| <aname="input_enable_mock_mesh"></a> [enable\_mock\_mesh](#input\_enable\_mock\_mesh)| Enable mock mesh access (dev only). Grants lambda permission to read mock-mesh prefix in non-pii bucket. |`bool`|`false`| no |
24
26
| <aname="input_enable_pdm_mock"></a> [enable\_pdm\_mock](#input\_enable\_pdm\_mock)| Flag indicating whether to deploy PDM mock API (should be false in production environments) |`bool`|`true`| no |
| <aname="input_environment"></a> [environment](#input\_environment)| The name of the tfscaffold environment |`string`| n/a | yes |
29
+
| <aname="input_event_anomaly_band_width"></a> [event\_anomaly\_band\_width](#input\_event\_anomaly\_band\_width)| The width of the anomaly detection band. Higher values (e.g. 4-6) reduce sensitivity and noise, lower values (e.g. 2-3) increase sensitivity. Recommended: 2-4. |`number`|`3`| no |
30
+
| <aname="input_event_anomaly_evaluation_periods"></a> [event\_anomaly\_evaluation\_periods](#input\_event\_anomaly\_evaluation\_periods)| Number of evaluation periods for the anomaly alarm. Each period is defined by event\_anomaly\_period. |`number`|`2`| no |
31
+
| <aname="input_event_anomaly_period"></a> [event\_anomaly\_period](#input\_event\_anomaly\_period)| The period in seconds over which the specified statistic is applied for anomaly detection. Minimum 300 seconds (5 minutes). Recommended: 300-600. |`number`|`300`| no |
| <aname="input_force_destroy"></a> [force\_destroy](#input\_force\_destroy)| Flag to force deletion of S3 buckets |`bool`|`false`| no |
@@ -43,14 +49,15 @@ No requirements.
43
49
| <aname="input_region"></a> [region](#input\_region)| The AWS Region |`string`| n/a | yes |
44
50
| <aname="input_report_scheduler_schedule"></a> [report\_scheduler\_schedule](#input\_report\_scheduler\_schedule)| Schedule to trigger sender reports |`string`|`"cron(30 4 * * ? *)"`| no |
45
51
| <aname="input_shared_infra_account_id"></a> [shared\_infra\_account\_id](#input\_shared\_infra\_account\_id)| The AWS Shared Infra Account ID (numeric) |`string`| n/a | yes |
| <aname="input_sqs_max_receive_count"></a> [sqs\_max\_receive\_count](#input\_sqs\_max\_receive\_count)| Maximum number of times a message can be received before being sent to the DLQ |`string`|`"3"`| no |
47
54
| <aname="input_ttl_poll_schedule"></a> [ttl\_poll\_schedule](#input\_ttl\_poll\_schedule)| Schedule to poll for any overdue TTL records |`string`|`"rate(10 minutes)"`| no |
description="Number of evaluation periods for the anomaly alarm. Each period is defined by event_anomaly_period."
256
+
default=2
257
+
}
258
+
259
+
variable"event_anomaly_period" {
260
+
type=number
261
+
description="The period in seconds over which the specified statistic is applied for anomaly detection. Minimum 300 seconds (5 minutes). Recommended: 300-600."
262
+
default=300
263
+
}
264
+
265
+
variable"event_anomaly_band_width" {
266
+
type=number
267
+
description="The width of the anomaly detection band. Higher values (e.g. 4-6) reduce sensitivity and noise, lower values (e.g. 2-3) increase sensitivity. Recommended: 2-4."
0 commit comments