-
Notifications
You must be signed in to change notification settings - Fork 0
/
providers.tf
58 lines (48 loc) · 1.26 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.0.3"
}
humanitec = {
source = "humanitec/humanitec"
version = "1.6.5"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.12"
}
}
backend "s3" {
}
}
provider "aws" {
region = "eu-west-2"
}
provider "humanitec" {}
provider "kubernetes" {
host = var.k8s_cluster_endpoint
cluster_ca_certificate = base64decode(var.k8s_cluster_ca_certificate)
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", var.k8s_cluster_name]
}
}
provider "helm" {
kubernetes {
host = var.k8s_cluster_endpoint
cluster_ca_certificate = base64decode(var.k8s_cluster_ca_certificate)
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", var.k8s_cluster_name]
}
}
}