Add disk_type variable for EBS volume type on AWS

* Change EBS volume type from `standard` ("prior generation)
 to `gp2`. Prometheus alerts are tuned for SSDs
* Other platforms have fast enough disks by default
This commit is contained in:
Dalton Hubble
2018-03-29 00:24:07 -07:00
parent b1e41dcb99
commit f8e9bfb1c0
6 changed files with 25 additions and 7 deletions

View File

@ -46,6 +46,12 @@ variable "disk_size" {
description = "Size of the EBS volume in GB"
}
variable "disk_type" {
type = "string"
default = "gp2"
description = "Type of the EBS volume (e.g. standard, gp2, io1)"
}
variable "clc_snippets" {
type = "list"
description = "Container Linux Config snippets"