-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproviders.tf
More file actions
37 lines (34 loc) · 1.24 KB
/
Copy pathproviders.tf
File metadata and controls
37 lines (34 loc) · 1.24 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
provider "aws" {
profile = "default"
region = local.region
}
provider "helm" {
kubernetes = {
host = module.open-webui-eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.open-webui-eks.cluster_certificate_authority_data)
exec = {
api_version = "client.authentication.k8s.io/v1beta1"
command = "aws"
args = ["eks", "get-token", "--cluster-name", local.cluster_name, "--output", "json"]
}
}
}
provider "kubernetes" {
host = module.open-webui-eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.open-webui-eks.cluster_certificate_authority_data)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
command = "aws"
args = ["eks", "get-token", "--cluster-name", local.cluster_name, "--output", "json"]
}
}
provider "kubectl" {
host = module.open-webui-eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.open-webui-eks.cluster_certificate_authority_data)
load_config_file = false
exec {
api_version = "client.authentication.k8s.io/v1beta1"
command = "aws"
args = ["eks", "get-token", "--cluster-name", local.cluster_name, "--output", "json"]
}
}