-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.fp
37 lines (31 loc) · 969 Bytes
/
variables.fp
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
32
33
34
35
36
37
variable "approvers" {
type = list(notifier)
description = "List of notifiers to be used for obtaining action/approval decisions, when empty list will perform the default response associated with the detection."
default = [notifier.default]
}
variable "notifier" {
type = notifier
description = "The notifier to use for sending notification messages."
default = notifier.default
}
variable "notification_level" {
type = string
description = "The verbosity level of notification messages to send."
default = "info"
}
variable "database" {
type = connection.steampipe
description = "Steampipe database connection string."
default = connection.steampipe.default
tags = {
folder = "Advanced"
}
}
variable "max_concurrency" {
type = number
description = "The maximum concurrency to use for responding to detection items."
default = 1
tags = {
folder = "Advanced"
}
}