-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproviders.tf.example
39 lines (33 loc) · 1.25 KB
/
providers.tf.example
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
data "aws_eks_cluster" "cluster" {
name = module.eks.eks_cluster_id
}
data "aws_eks_cluster_auth" "cluster" {
name = module.eks.eks_cluster_id
}
provider "aws" {
profile = "change_me"
region = "change_me"
}
provider "kubernetes" {
host = data.aws_eks_cluster.cluster.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority[0].data)
# https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs#exec-plugins
exec {
api_version = "client.authentication.k8s.io/v1beta1"
args = ["eks", "get-token", "--profile", "change_me", "--cluster-name", data.aws_eks_cluster.cluster.name]
command = "aws"
}
}
provider "helm" {
kubernetes {
host = data.aws_eks_cluster.cluster.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority[0].data)
token = data.aws_eks_cluster_auth.cluster.token
# Uncomment if you run into Helm timeout issues on Linux
#exec {
# api_version = "client.authentication.k8s.io/v1beta1"
# args = ["eks", "--profile=change_me", "get-token", "--cluster-name", data.aws_eks_cluster.cluster.name]
# command = "aws"
#}
}
}