-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
81 lines (68 loc) · 1.91 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
variable "cluster_name" {
description = "Name of the EKS cluster"
type = string
}
variable "oidc_provider_arn" {
description = "The ARN of the EKS cluster OIDC provider"
type = string
}
variable "irsa_role_name" {
description = "Name of the irsa role"
type = string
default = ""
}
variable "serviceaccount" {
description = "Existing service account name"
type = string
default = ""
}
variable "enable_cluster_autoscaler" {
description = "Determine cluster autoscaler installation"
type = bool
default = false
}
variable "role_policies" {
description = "Policies to attach to the IAM role in `{'static_name' = 'policy_arn'}` format"
type = map(string)
default = {}
}
variable "chart_name" {
type = string
default = "cluster-autoscaler"
description = "Name of the Helm Chart"
}
variable "release_name" {
type = string
default = "cluster-autoscaler"
description = "Helm Chart release name"
}
variable "chart_version" {
type = string
default = ""
description = "Cluster Autoscaler Helm chart version."
}
variable "chart_repo" {
type = string
default = "https://kubernetes.github.io/autoscaler"
description = "Cluster Autoscaler repository name."
}
variable "create_namespace" {
type = bool
default = false
description = "Whether to create Kubernetes namespace with name defined by `namespace`."
}
variable "namespace" {
type = string
default = ""
description = "Kubernetes namespace to deploy Cluster Autoscaler Helm chart."
}
variable "set" {
description = "Value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "set_annotations" {
description = "Value annotations name where IRSA role ARN created by module will be assigned to the `value`"
type = list(string)
default = []
}