-
Notifications
You must be signed in to change notification settings - Fork 9
/
variables.tf
34 lines (29 loc) · 1.13 KB
/
variables.tf
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
variable "buckets-to-scan" {
description = "List of bucket names to be scanned by the antivirus"
type = list(string)
}
variable "scanner-environment-variables" {
description = "Custom environment variables for the scanner function"
type = map(string)
default = {}
}
variable "updater-environment-variables" {
description = "Custom environment variables for the definitions update function"
type = map(string)
default = {}
}
variable "antivirus-lambda-code" {
description = "Optional argument to provide precompiled zip file containing the lambda code, skipping the built in compilation process"
type = string
default = null
}
variable "allow-public-access" {
description = "If true, contents of the bucket in which the antivirus definitions are saved will be public. Good for sharing the same definitions across multiple accounts."
type = bool
default = false
}
variable "antivirus-update-rate" {
description = "Configures the antivirus update rate. Syntax is the same of cloudwatch rate schedule expression for rules"
type = string
default = "3 hours"
}