#57 - manage root volume size and type

This commit is contained in:
Bill Wang
2018-07-09 23:59:34 +00:00
parent f385415c88
commit 2173bbcfa9
3 changed files with 24 additions and 1 deletions

View File

@@ -41,6 +41,21 @@ variable "vpc_id" {
description = "VPC where the cluster and workers will be deployed."
}
variable "root_volume_size" {
description = "The root size of the volume in gigabytes."
default = "20"
}
variable "root_volume_type" {
description = "The type of root volume. Can be 'standard', 'gp2', or 'io1'"
default = "gp2"
}
variable "root_iops" {
description = "The amount of provisioned IOPS. This must be set with a volume_type of 'io1'."
default = ""
}
variable "worker_groups" {
description = "A list of maps defining worker group configurations. See workers_group_defaults for valid keys."
type = "list"