Skip to content

Commit 50b1c07

Browse files
committed
pre-commit run -a
1 parent de6df00 commit 50b1c07

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,21 @@ No requirements.
1919

2020
## Providers
2121

22-
No provider.
22+
| Name | Version |
23+
|------|---------|
24+
| aws | n/a |
2325

2426
## Inputs
2527

2628
| Name | Description | Type | Default | Required |
2729
|------|-------------|------|---------|:--------:|
28-
| name | Moniker to apply to all resources in the module | `string` | n/a | yes |
30+
| custom\_action\_notification\_arn | Notification ARN to send custom actions to (leave blank if not using custom actions) | `string` | `null` | no |
31+
| imported\_finding\_notification\_arn | Notification ARN to send imported findings to (leave blank if not using custom actions) | `string` | `null` | no |
32+
| name | Moniker to apply to or prefix all resources in the module | `string` | `"securityhub"` | no |
2933
| tags | User-Defined tags | `map(string)` | `{}` | no |
3034

3135
## Outputs
3236

33-
| Name | Description |
34-
|------|-------------|
35-
| tags\_module | Tags Module in it's entirety |
37+
No output.
3638

3739
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
########################################
44

55
variable "name" {
6-
default = "securityhub"
6+
default = "securityhub"
77
description = "Moniker to apply to or prefix all resources in the module"
88
type = string
99
}
@@ -28,4 +28,4 @@ variable "imported_finding_notification_arn" {
2828
default = null
2929
description = "Notification ARN to send imported findings to (leave blank if not using custom actions)"
3030
type = string
31-
}
31+
}

0 commit comments

Comments
 (0)