-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
31 lines (26 loc) · 848 Bytes
/
variables.tf
File metadata and controls
31 lines (26 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
########################################
# General Vars
########################################
variable "name" {
default = "securityhub"
description = "Moniker to apply to or prefix all resources in the module"
type = string
}
variable "tags" {
default = {}
description = "User-Defined tags"
type = map(string)
}
########################################
# Notification ARNs
########################################
variable "custom_action_notification_arn" {
default = null
description = "Notification ARN to send custom actions to (leave blank if not using custom actions)"
type = string
}
variable "imported_finding_notification_arn" {
default = null
description = "Notification ARN to send imported findings to (leave blank if not using custom actions)"
type = string
}