generated from blackbird-cloud/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 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 "name" {
default = "aws-eks-cloudwatch-logs"
type = string
description = "Name for created resources."
}
variable "cluster_name" {
type = string
description = "AWS EKS Cluster name."
}
variable "log_retention_days" {
type = number
default = 30
description = "How many days the logs should be retained."
}
variable "fargate_logging_enabled" {
type = bool
default = false
description = "Set to true to collect logs from Fargate PODs."
}
variable "fargate_logging_iam_role_name" {
type = string
default = ""
description = "Name of the IAM role used by Fargate to send the logs."
}
variable "aws_region" {
type = string
description = "AWS Region used for storing logs."
}
variable "tags" {
type = map(string)
default = {}
description = "AWS Provider detault tags"
}
variable "values" {
type = list(string)
description = "Additional values to pass into the AWS EKS Cloudwatch helm chart."
default = []
}