forked from particuleio/terraform-kubernetes-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables-aws.tf
83 lines (70 loc) · 2.06 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
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
variable "arn-partition" {
description = "ARN partition"
default = ""
type = string
}
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-efs-csi-driver" {
description = "Customize aws-efs-csi-driver helm chart, see `aws-efs-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 "prometheus-cloudwatch-exporter" {
description = "Customize prometheus-cloudwatch-exporter chart, see `prometheus-cloudwatch-exporter.tf` for supported values"
type = any
default = {}
}
variable "secrets-store-csi-driver-provider-aws" {
description = "Enable secrets-store-csi-driver-provider-aws"
type = any
default = {}
}
variable "tags" {
description = "Map of tags for AWS resources"
type = map(any)
default = {}
}
variable "velero" {
description = "Customize velero chart, see `velero.tf` for supported values"
type = any
default = {}
}