forked from DNXLabs/terraform-aws-eks-cloudwatch-logs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.tf
100 lines (83 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
variable "enabled" {
type = bool
default = true
description = "Variable indicating whether deployment is enabled."
}
variable "cluster_name" {
type = string
description = "The name of the cluster."
}
variable "region" {
type = string
description = "The region for Fluent Bit Cloudwatch Logs"
}
variable "cluster_identity_oidc_issuer" {
type = string
description = "The OIDC Identity issuer for the cluster."
}
variable "cluster_identity_oidc_issuer_arn" {
type = string
description = "The OIDC Identity issuer ARN for the cluster that can be used to associate IAM roles with a service account."
}
variable "helm_chart_name" {
type = string
default = "aws-for-fluent-bit"
description = "Install Fluent Bit to send logs from containers to CloudWatch Logs"
}
variable "helm_chart_release_name" {
type = string
default = "aws-for-fluent-bit"
description = "Fluent Bit Helm release name."
}
variable "helm_chart_repo" {
type = string
default = "https://aws.github.io/eks-charts"
description = "Fluent Bit Helm repository name."
}
variable "helm_chart_version" {
type = string
default = "0.1.7"
description = "Fluent Bit Helm chart version."
}
variable "create_namespace" {
type = bool
default = true
description = "Whether to create Kubernetes namespace with name defined by `namespace`."
}
variable "namespace" {
type = string
default = "aws-cloudwatch-logs"
description = "Kubernetes namespace to deploy Fluent Bit Helm chart."
}
variable "service_account_name" {
type = string
default = "aws-for-fluent-bit"
description = "Fluent Bit service account name."
}
variable "mod_dependency" {
default = null
description = "Dependence variable binds all AWS resources allocated by this module, dependent modules reference this variable."
}
variable "worker_iam_role_name" {
type = string
description = "IAM role name for EKS worker groups."
}
variable "firehose_enabled" {
type = string
description = "Whether this plugin should be enabled or not."
default = false
}
variable "kinesis_enabled" {
type = string
description = "Whether this plugin should be enabled or not."
default = false
}
variable "elasticsearch_enabled" {
type = string
description = "Whether this plugin should be enabled or not."
default = false
}
variable "settings" {
default = {}
description = "Additional settings which will be passed to the Helm chart values."
}