-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 loc) · 881 Bytes
/
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
variable "region" {
type = string
default = "europe-west1"
}
variable "zone" {
type = string
default = "europe-west1-a"
}
variable "cluster_name" {
description = "gke cluster name"
type = string
default = "cluster"
}
f
variable "gke_nodes" {
default = 1
description = "number of gke nodes"
}
variable "preemptible" {
type = bool
default = true
description = "A boolean that represents whether or not the underlying node VMs are preemptible."
}
variable "labels" {
description = "A map of labels to apply to contained resources."
default = {}
type = map(string)
}
variable "node_tags" {
description = "A list of node tags"
default = []
type = list(string)
}
variable "node_machine_type" {
description = "Primary nodes machine type"
default = "e2-micro"
type = string
}