-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
42 lines (36 loc) · 1.07 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
variable "buffer_interval" {
default = 300
description = "Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination"
type = number
}
variable "buffer_size" {
default = 5
description = "Buffer incoming events to the specified size, in MBs, before delivering it to the destination"
type = number
}
variable "delete_events_when_destroying_stack" {
default = false
description = "Whether to delete stored events when destroying the stack"
type = bool
}
variable "events_expiration_days" {
default = 365
description = "Keep the events for this number of days"
type = number
}
variable "logs_retention_days" {
default = 14
description = "Keep the logs for this number of days"
type = number
}
variable "logs_verbose" {
default = false
description = "Include debug information in the logs"
type = bool
}
variable "secret" {
default = ""
description = "Secret to be expected by the collector"
sensitive = true
type = string
}