-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
56 lines (48 loc) · 1.07 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
/**
* Project variables
*/
variable "region" {
description = "Region of resources"
default = "us-central1"
}
variable "project_id" {
description = "The project ID to host the cluster"
default = "getup-239903"
}
/**
* Network variables
*/
variable "subnet_cidr" {
description = "Subnet range"
default = "10.10.0.0/24"
}
/**
* GKE variables
*/
variable "min_master_version" {
description = "Minimal version of kubernetes on GKE"
default = "1.12.6-gke.10"
}
variable "node_version" {
description = "Number of nodes in each GKE cluster zone"
default = "1.12.6-gke.10"
}
variable "gke_master_user" {
default = "k8s_admin"
description = "Username to authenticate with the k8s master"
}
variable "gke_node_machine_type" {
default = "n1-standard-1"
description = "Machine type of GKE nodes"
}
/**
* Kubernetes variables
*/
variable "kubernetes_username" {
default = "getup-admin"
description = "Cluster admin username"
}
variable "kubernetes_password" {
default = "SDePcEFueEK6nshf"
description = "Cluster admin password"
}