forked from opsworks-co/vector-eks-s3-opensearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
34 lines (29 loc) · 885 Bytes
/
main.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
data "aws_eks_cluster" "eks" {
name = var.eks_cluster_name
}
data "aws_region" "current" {}
locals {
default_helm_chart_config = {
chart = "vector"
repository = "https://helm.vector.dev"
version = "0.34.0"
namespace = "vector"
create_namespace = true
}
helm_chart_config = merge(
local.default_helm_chart_config,
var.helm_chart_config
)
}
provider "helm" {
kubernetes {
host = data.aws_eks_cluster.eks.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.eks.certificate_authority[0].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", data.aws_eks_cluster.eks.name]
}
}
}