-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheks-addons.tf
46 lines (38 loc) · 1.37 KB
/
eks-addons.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
provider "helm" {
kubernetes {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
command = "aws"
# This requires the awscli to be installed locally where Terraform is executed
args = ["eks", "get-token", "--cluster-name", module.eks.cluster_name]
}
}
}
################################################################################
# EKS Add-ons Module
################################################################################
module "eks-blueprints-addons" {
source = "aws-ia/eks-blueprints-addons/aws"
version = "~> 1.8.0"
cluster_name = local.cluster_name
cluster_endpoint = module.eks.cluster_endpoint
cluster_version = module.eks.cluster_version
oidc_provider_arn = module.eks.oidc_provider_arn
# EKS Blueprints Add-ons:
# Cluster Auto-scaler
enable_cluster_autoscaler = true
# AWS LB Controller
enable_aws_load_balancer_controller = true
# ArgoCD
enable_argocd = true
argocd = {
name = "argocd"
chart_version = "5.53.0"
repository = "https://argoproj.github.io/argo-helm"
namespace = "argocd"
values = [templatefile("${path.module}/templates/argocd-helm-values.yaml", {})]
}
depends_on = [module.eks]
}