forked from campaand/terraform-aws-alb-ingress-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
34 lines (28 loc) · 859 Bytes
/
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
# Created by Andrea Campice
variable "vpc_id" {
type = string
description = "EKS Cluster VPC ID"
}
variable "cluster_name" {
type = string
description = "EKS Cluster Name / ID"
}
variable "namespace" {
type = string
default = "kube-system"
description = "Namespace where ALB Controller will be created"
}
variable "service_account_name" {
type = string
default = "aws-load-balancer-controller"
description = "Service Account Name for ALB Controller"
}
variable "helm_chart_version" {
type = string
description = "Version for Helm Chart, not Application Version, https://artifacthub.io/packages/helm/aws/aws-load-balancer-controller"
}
variable "settings" {
type = map(any)
default = {}
description = "Additional settings which will be passed to the Helm chart values"
}