mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-07-14 05:11:34 +02:00
Add optional controller_type and worker_type vars on GCP
* Remove optional machine_type variable on Google Cloud * Use controller_type and worker_type instead
This commit is contained in:
@ -34,10 +34,16 @@ variable "worker_count" {
|
||||
description = "Number of workers"
|
||||
}
|
||||
|
||||
variable "machine_type" {
|
||||
type = "string"
|
||||
default = "n1-standard-1"
|
||||
description = "Machine type for compute instances (see `gcloud compute machine-types list`)"
|
||||
variable controller_type {
|
||||
type = "string"
|
||||
default = "n1-standard-1"
|
||||
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
|
||||
}
|
||||
|
||||
variable worker_type {
|
||||
type = "string"
|
||||
default = "n1-standard-1"
|
||||
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
|
||||
}
|
||||
|
||||
variable "os_image" {
|
||||
|
Reference in New Issue
Block a user