-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathvariables.tf
69 lines (57 loc) · 1.62 KB
/
variables.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
### General ###
variable "app_name" {
type = string
description = "Application name. Use only lowercase letters and numbers"
}
variable "location" {
type = string
description = "Azure region where to create resources."
default = "West Europe"
}
variable "domain_name_label" {
type = string
description = "Unique domain name label for AKS Cluster / Application Gateway"
default = "aks-cluster-test"
}
### AKS configuration params ###
variable "kubernetes_version" {
type = string
description = "Kubernetes version of the node pool"
default = "1.21.7"
}
variable "vm_size_node_pool" {
type = string
description = "VM Size of the node pool"
default = "Standard_D2s_v3"
}
variable "node_pool_min_count" {
type = string
description = "VM minimum amount of nodes for the node pool"
default = 3
}
variable "node_pool_max_count" {
type = string
description = "VM maximum amount of nodes for the node pool"
default = 5
}
### Helm Chart versions ###
variable "helm_pod_identity_version" {
type = string
description = "Helm chart version of aad-pod-identity"
default = "4.1.1"
}
variable "helm_csi_secrets_version" {
type = string
description = "Helm chart version of secrets-store-csi-driver-provider-azure"
default = "0.0.18"
}
variable "helm_agic_version" {
type = string
description = "Helm chart version of ingress-azure-helm-package"
default = "1.4.0"
}
variable "helm_keda_version" {
type = string
description = "Helm chart version of keda helm package"
default = "2.3.2"
}