-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
45 lines (37 loc) · 1.01 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
variable "account_id" {
type = string
description = "The AWS account ID"
}
variable "oidc_host_path" {
type = string
}
variable "region" {
type = string
description = "The AWS region to deploy to"
}
variable "enable_cloudwatch_agent" {
type = bool
description = "Boolean to enable cloudwatch agent"
}
variable "enable_fluentbit" {
type = bool
description = "Boolean to enable fluentbit"
}
variable "fluentbit_full_log" {
type = bool
description = "Boolean to output full pod/container logs + kubernetes metadata or just the message"
}
variable "eks_cluster_name" {
type = string
description = "Name of the EKS cluster"
}
variable "log_retention_in_days" {
description = "Number of days to retain log events"
type = number
default = 90
}
variable "log_preserve_legacy_log_group" {
description = "When true, preserves the legacy log group. Mainly useful to transition to the new log group format"
type = bool
default = true
}