-
Notifications
You must be signed in to change notification settings - Fork 0
/
providers.tf
49 lines (45 loc) · 1.34 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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~>5.62.0"
}
}
required_version = "~>1.9.4"
}
provider "aws" {
profile = var.profile
region = var.region
alias = "us-east-1"
# access_key = var.access_key
# secret_key = var.secret_key
default_tags {
tags = {
ManagedBy = "Terraform"
}
}
}
provider "kubernetes" {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
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", module.eks.cluster_name]
}
}
provider "helm" {
# https://github.com/hashicorp/terraform-provider-helm/issues/630#issuecomment-996682323
repository_config_path = "${path.module}/.helm/repositories.yaml"
repository_cache = "${path.module}/.helm"
kubernetes {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
args = ["eks", "get-token", "--cluster-name", module.eks.cluster_name]
command = "aws"
}
}
}