-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.tf
42 lines (39 loc) · 1.02 KB
/
provider.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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.48.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.17.0"
}
helm = {
source = "hashicorp/helm"
version = "2.8.0"
}
}
}
provider "aws" {
region = var.region
}
provider "kubernetes" {
host = module.eks_cluster.endpoint
cluster_ca_certificate = base64decode(module.eks_cluster.certificate_authority)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
args = ["eks", "get-token", "--cluster-name", module.eks_cluster.cluster_name]
command = "aws"
}
}
provider "helm" {
kubernetes {
host = module.eks_cluster.endpoint
cluster_ca_certificate = base64decode(module.eks_cluster.certificate_authority)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
args = ["eks", "get-token", "--cluster-name", module.eks_cluster.cluster_name]
command = "aws"
}
}
}