Change DO worker_type default from s-1vcpu-1gb to s-1vcpu-2gb

* On DigitalOcean, `s-1vcpu-1gb` worker nodes have 1GB of RAM, which
is too small as a default, even for most cost constrained developers
This commit is contained in:
Dalton Hubble
2019-06-01 13:49:56 -07:00
parent da3f2b5d95
commit 5303e32e38
3 changed files with 4 additions and 3 deletions

View File

@ -37,8 +37,8 @@ variable "controller_type" {
variable "worker_type" {
type = string
default = "s-1vcpu-1gb"
description = "Droplet type for workers (e.g. s-1vcpu-1gb, s-1vcpu-2gb, s-2vcpu-2gb)"
default = "s-1vcpu-2gb"
description = "Droplet type for workers (e.g. s-1vcpu-2gb, s-2vcpu-2gb)"
}
variable "image" {