-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
53 lines (45 loc) · 1.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
variable "lacework_agent_build_hash" {
type = string
description = "An Agent build hash provided by Lacework"
default = ""
}
variable "lacework_access_token" {
type = string
description = "The access token for the Lacework agent"
default = ""
}
variable "lacework_agent_tags" {
type = map(string)
description = "A map/dictionary of Tags to be assigned to the Lacework datacollector"
default = {}
}
variable "lacework_agent_configuration" {
type = any
description = "A map/dictionary of configuration parameters for the Lacework agent"
default = {}
}
variable "lacework_agent_temp_path" {
type = string
description = "The temporary path for the Lacework installation script"
default = "/tmp"
}
variable "aws_resources_prefix" {
type = string
description = "Prefix to use for created AWS resources"
default = ""
}
variable "aws_resources_tags" {
type = map(string)
description = "A map/dictionary of Tags to be assigned to created AWS resources"
default = {}
}
variable "lacework_server_url" {
type = string
default = ""
description = "The server URL for the Lacework agent"
}
variable "lacework_enable_default_syscall_config" {
type = string
default = "false"
description = "A flag to enable the default syscall config"
}