File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -40,17 +40,27 @@ data "aws_eks_cluster_auth" "aws_iam_authenticator" {
40
40
provider "kubernetes" {
41
41
alias = "eks"
42
42
host = data.aws_eks_cluster.target.endpoint
43
- cluster_ca_certificate = base64decode(data.aws_eks_cluster.target.certificate_authority[0].data)
44
43
token = data.aws_eks_cluster_auth.aws_iam_authenticator.token
44
+ cluster_ca_certificate = base64decode(data.aws_eks_cluster.target.certificate_authority[0].data)
45
45
load_config_file = false
46
46
}
47
47
48
- module "alb_ingress_controller" {
49
- source = "iplabs/alb-ingress-controller/kubernetes"
48
+ provider "helm" {
49
+ alias = "eks"
50
+ kubernetes {
51
+ host = data.aws_eks_cluster.target.endpoint
52
+ token = data.aws_eks_cluster_auth.aws_iam_authenticator.token
53
+ cluster_ca_certificate = base64decode(data.aws_eks_cluster.target.certificate_authority[0].data)
54
+ }
55
+ }
56
+
57
+ module "alb_controller" {
58
+ source = "iplabs/alb-controller/kubernetes"
50
59
version = "3.4.0"
51
60
52
61
providers = {
53
- kubernetes = "kubernetes.eks"
62
+ kubernetes = "kubernetes.eks",
63
+ helm = "helm.eks"
54
64
}
55
65
56
66
k8s_cluster_type = "eks"
You can’t perform that action at this time.
0 commit comments