Change AWS default type from t2.small to t3.small

* T3 is the next generation general purpose burstable
instance type. Compared with t2.small, the t3.small is
cheaper, has 2 vCPU (instead of 1) and provides 5 Gbps
of pod-to-pod bandwidth (instead of 1 Gbps)
This commit is contained in:
Dalton Hubble
2018-12-18 12:29:27 -08:00
parent 4d2f33aee6
commit f2f4deb8bb
6 changed files with 20 additions and 15 deletions

View File

@ -31,13 +31,13 @@ variable "worker_count" {
variable "controller_type" {
type = "string"
default = "t2.small"
default = "t3.small"
description = "EC2 instance type for controllers"
}
variable "worker_type" {
type = "string"
default = "t2.small"
default = "t3.small"
description = "EC2 instance type for workers"
}