-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathvariables.tf
36 lines (30 loc) · 1.41 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
variable "product_domain" {
type = "string"
description = "The name of the product domain these resources belong to."
}
variable "service_name" {
type = "string"
description = "The name of the service these resources belong to."
}
variable "environment" {
type = "string"
description = "The environment of these resources belong to."
}
variable "description" {
type = "string"
description = "The description of these resources."
}
variable "s3_logging_bucket" {
type = "string"
description = "The name of an S3 Bucket which store logging for WebACL traffic information bucket. NOTE: SHOULD BE IN THE SAME REGION AS THE BUCKET."
}
variable "firehose_buffer_size" {
type = "string"
description = "Buffer incoming data to the specified size, in MBs, before delivering it to the destination. Valid value is between 64-128. Recommended is 128, specifying a smaller buffer size can result in the delivery of very small S3 objects, which are less efficient to query."
default = "128"
}
variable "firehose_buffer_interval" {
type = "string"
description = "Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. Valid value is between 60-900. Smaller value makes the logs delivered faster. Bigger value increase the chance to make the file size bigger, which are more efficient to query."
default = "900"
}