forked from lablabs/terraform-aws-eks-alb-ingress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
63 lines (48 loc) · 1.49 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
# Required module inputs
variable "cluster_name" {
type = string
description = "The name of the cluster"
}
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"
}
# alb-ingress
variable "enabled" {
type = bool
}
# Helm
variable "helm_chart_name" {
default = "aws-alb-ingress-controller"
}
variable "helm_chart_version" {
default = "0.1.13"
}
variable "helm_release_name" {
default = "aws-alb-ingress-controller"
}
variable "helm_repo_url" {
default = "http://storage.googleapis.com/kubernetes-charts-incubator"
}
# K8S
variable "k8s_namespace" {
default = "alb-ingress"
description = "The k8s namespace in which the alb-ingress service account has been created"
}
variable "k8s_service_account_name" {
default = "aws-alb-ingress-controller"
description = "The k8s alb-ingress 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 "settings" {
type = map(any)
default = {}
description = "Additional settings which will be passed to the Helm chart values, see https://hub.helm.sh/charts/incubator/aws-alb-ingress-controller"
}