forked from cthain/consul-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
providers.tf
46 lines (42 loc) · 956 Bytes
/
providers.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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.39.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = "2.2.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.15.0"
}
local = {
source = "hashicorp/local"
version = "2.2.3"
}
random = {
source = "hashicorp/random"
version = "3.4.3"
}
tls = {
source = "hashicorp/tls"
version = "3.4.0"
}
}
}
provider "aws" {
region = var.region
}
provider "kubernetes" {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
}
data "aws_eks_cluster_auth" "cluster" {
name = module.eks.cluster_id
}
data "aws_eks_cluster" "cluster" {
name = module.eks.cluster_id
}