Fix GCP controller_type and worker_type vars
This commit is contained in:
parent
2eaf858c5c
commit
c8eabc2af4
|
@ -34,13 +34,13 @@ variable "worker_count" {
|
||||||
description = "Number of workers"
|
description = "Number of workers"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable controller_type {
|
variable "controller_type" {
|
||||||
type = "string"
|
type = "string"
|
||||||
default = "n1-standard-1"
|
default = "n1-standard-1"
|
||||||
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
|
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable worker_type {
|
variable "worker_type" {
|
||||||
type = "string"
|
type = "string"
|
||||||
default = "n1-standard-1"
|
default = "n1-standard-1"
|
||||||
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
|
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
|
||||||
|
|
Loading…
Reference in New Issue