Skip to content

Commit 17f2fdf

Browse files
committed
Update the instructions
1 parent eb83cdd commit 17f2fdf

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

README.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,27 @@ data "aws_eks_cluster_auth" "aws_iam_authenticator" {
4040
provider "kubernetes" {
4141
alias = "eks"
4242
host = data.aws_eks_cluster.target.endpoint
43-
cluster_ca_certificate = base64decode(data.aws_eks_cluster.target.certificate_authority[0].data)
4443
token = data.aws_eks_cluster_auth.aws_iam_authenticator.token
44+
cluster_ca_certificate = base64decode(data.aws_eks_cluster.target.certificate_authority[0].data)
4545
load_config_file = false
4646
}
4747
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"
5059
version = "3.4.0"
5160
5261
providers = {
53-
kubernetes = "kubernetes.eks"
62+
kubernetes = "kubernetes.eks",
63+
helm = "helm.eks"
5464
}
5565
5666
k8s_cluster_type = "eks"

0 commit comments

Comments
 (0)