-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (33 loc) · 897 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
variable "project" {
description = "The project ID to host the solution."
type = string
}
variable "region" {
description = "The region for deployment."
type = string
default = "europe-west3"
}
variable "cluster_location" {
description = "The location (region or zone) of the GKE cluster. (Optional)"
type = string
default = null
}
variable "cluster_name" {
description = "The cluster name (Optional)"
type = string
default = "dev"
}
variable "cluster_machine_type" {
description = "The machine type of each gke node in the pool (Optional)"
type = string
default = "n1-standard-2"
}
variable "cluster_max_node_count" {
description = "The max number of nodes in the gke pool (Optional)"
type = number
default = 6
}
variable "environments" {
type = list(string)
default = ["dev", "prod"]
}