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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ No requirements.
16
16
| <aname="input_aws_account_id"></a> [aws\_account\_id](#input\_aws\_account\_id)| The AWS Account ID (numeric) |`string`| n/a | yes |
17
17
| <aname="input_component"></a> [component](#input\_component)| The variable encapsulating the name of this component |`string`|`"dl"`| no |
18
18
| <aname="input_core_notify_url"></a> [core\_notify\_url](#input\_core\_notify\_url)| The URL used to send requests to Notify |`string`|`"https://sandbox.api.service.nhs.uk"`| no |
19
+
| <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 |
19
20
| <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 |
20
21
| <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 |
21
22
| <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 |
description="A function that handles GuardDuty Malware Protection Object Scan Result and depending on the result moves objects from the unscanned bucket to the file safe or quarantined bucket. "
6
+
7
+
aws_account_id=var.aws_account_id
8
+
component=local.component
9
+
environment=var.environment
10
+
project=var.project
11
+
region=var.region
12
+
group=var.group
13
+
14
+
log_retention_in_days=var.log_retention_in_days
15
+
kms_key_arn=module.kms.key_arn
16
+
17
+
iam_policy_document={
18
+
body = data.aws_iam_policy_document.move_scanned_files.json
0 commit comments