-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.tf
70 lines (55 loc) · 977 Bytes
/
variable.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
variable "environment" {
default = "stg"
}
variable "dns_zone_name" {
default = "kk.dev"
}
variable "kubernetes_cluster_name" {
description = "Name for the Kubernetes cluster"
default = "k8s"
}
variable "tags" {
default = {}
}
variable "aws_region" {
default = "eu-west-1"
}
variable "aws_profile" {
default = "playground"
}
variable "nodes_instances_sizes" {
default = [
"t3.medium"
]
}
variable "auto_scale_options" {
default = {
min = 1
max = 2
desired = 1
}
}
variable "helm_istio_version" {
default = "1.15.3"
}
variable "helm_prometheus_version" {
default = "15.9.0"
}
variable "helm_kiali_version" {
default = "1.55.1"
}
variable "helm_grafana_version" {
default = "6.31.1"
}
variable "helm_flagger_version" {
default = "1.24.1"
}
variable "telepresence_enabled" {
default = true
}
variable "helm_telepresence_version" {
default = "2.8.3"
}
variable "release_version" {
default = "1.0.0"
}