forked from nuonco/aws-eks-karpenter-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproviders.tf
More file actions
62 lines (49 loc) · 1.46 KB
/
providers.tf
File metadata and controls
62 lines (49 loc) · 1.46 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
locals {
k8s_exec = {
api_version = "client.authentication.k8s.io/v1beta1"
command = "aws"
# This requires the aws iam authenticator to be installed locally where Terraform is executed
args = ["eks", "get-token", "--region", var.region, "--cluster-name", module.eks.cluster_name]
}
}
provider "aws" {
region = var.region
default_tags {
tags = local.default_tags
}
}
provider "kubernetes" {
alias = "main"
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
exec {
api_version = local.k8s_exec.api_version
command = local.k8s_exec.command
args = local.k8s_exec.args
}
}
provider "helm" {
alias = "main"
helm_driver = var.helm_driver
kubernetes {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
exec {
api_version = local.k8s_exec.api_version
command = local.k8s_exec.command
args = local.k8s_exec.args
}
}
}
provider "kubectl" {
alias = "main"
apply_retry_count = 5
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
load_config_file = false
exec {
api_version = local.k8s_exec.api_version
command = local.k8s_exec.command
args = local.k8s_exec.args
}
}