forked from particuleio/terraform-kubernetes-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables-aws.tf
53 lines (45 loc) · 1.3 KB
/
variables-aws.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
variable "aws" {
description = "AWS provider customization"
type = any
default = {}
}
variable "aws-ebs-csi-driver" {
description = "Customize aws-ebs-csi-driver helm chart, see `aws-ebs-csi-driver.tf`"
type = any
default = {}
}
variable "aws-for-fluent-bit" {
description = "Customize aws-for-fluent-bit helm chart, see `aws-fluent-bit.tf`"
type = any
default = {}
}
variable "aws-load-balancer-controller" {
description = "Customize aws-load-balancer-controller chart, see `aws-load-balancer-controller.tf` for supported values"
type = any
default = {}
}
variable "aws-node-termination-handler" {
description = "Customize aws-node-termination-handler chart, see `aws-node-termination-handler.tf`"
type = any
default = {}
}
variable "calico" {
description = "Customize calico helm chart, see `calico.tf`"
type = any
default = {}
}
variable "cni-metrics-helper" {
description = "Customize cni-metrics-helper deployment, see `cni-metrics-helper.tf` for supported values"
type = any
default = {}
}
variable "eks" {
description = "EKS cluster inputs"
type = any
default = {}
}
variable "tags" {
description = "Map of tags for AWS resources"
type = map(any)
default = {}
}