-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
45 lines (38 loc) · 965 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 "cluster_name" {
description = "Name of the GKE cluster"
default = "polkadot-deployer"
type = string
}
variable "location" {
description = "GKE location"
type = string
}
variable "node_count" {
description = "Size of GKE cluster"
default = 2
type = number
}
variable "machine_type" {
description = "The name of a GKE machine type"
default = "n1-standard-2"
type = string
}
variable "k8s_version" {
description = "Kubernetes version to use for the cluster"
default = "1.15.11-gke.11"
type = string
}
variable "image_type" {
description = "The image type to use for the cluster nodes"
default = "UBUNTU"
type = string
}
variable "gcloud_path" {
description = "Path to gcloud binary"
default = "gcloud"
type = string
}
variable "gcp_project_id" {
description = "Google cloud project id used for terraform state"
type = string
}