forked from richardalberto/terraform-google-kubernetes-istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (39 loc) · 1.13 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
variable "gcp_project" {
description = "The name of the GCP Project where all resources will be launched."
}
variable "gcp_region" {
description = "The region in which all GCP resources will be launched."
default = "us-east1"
}
variable "cluster_name" {
description = "GKE cluster name"
}
variable "master_version" {
description = "Kubernetes cluster master version"
default = "1.10.7-gke.2"
}
variable "master_username" {
description = "GKE cluster master username"
}
variable "master_password" {
description = "GKE cluster master password"
}
variable "cluster_region" {
description = "GKE cluster region"
}
variable "helm_repository" {
description = "Helm repository where the istio chart release is published"
default = "https://richardalberto.github.io/terraform-google-kubernetes-istio"
}
variable "istio_version" {
description = "Istio chart version"
default = "1.0.1"
}
variable "min_node_count" {
description = "GKE cluster initial node count and min node count value"
default = 1
}
variable "max_node_count" {
description = "GKE cluster maximun node autoscaling count"
default = 3
}