-
Notifications
You must be signed in to change notification settings - Fork 49
/
providers.tf
83 lines (73 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
terraform {
required_providers {
azapi = {
source = "Azure/azapi"
version = "~> 1.11"
}
azuread = {
source = "hashicorp/azuread"
version = "~> 2.47"
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.87"
}
github = {
source = "integrations/github"
version = "~> 5.38"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.12"
}
humanitec = {
source = "humanitec/humanitec"
version = "~> 1.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.25"
}
random = {
source = "hashicorp/random"
version = "~> 3.5"
}
}
required_version = ">= 1.3.0"
}
provider "humanitec" {
org_id = var.humanitec_org_id
}
provider "github" {
owner = var.github_org_id
}
provider "azapi" {
subscription_id = var.subscription_id
}
provider "azurerm" {
features {}
subscription_id = var.subscription_id
}
provider "azuread" {}
provider "kubernetes" {
host = module.base.aks_host
cluster_ca_certificate = base64decode(module.base.aks_cluster_ca_certificate)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
command = "kubelogin"
# This requires the kubelogin to be installed locally where Terraform is executed
args = ["get-token", "--server-id", module.base.aks_server_app_id, "--login", "azurecli"]
}
}
provider "helm" {
kubernetes {
host = module.base.aks_host
cluster_ca_certificate = base64decode(module.base.aks_cluster_ca_certificate)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
command = "kubelogin"
# This requires the kubelogin to be installed locally where Terraform is executed
args = ["get-token", "--server-id", module.base.aks_server_app_id, "--login", "azurecli"]
}
}
}