From 4eef91e77590643d445f94d753baf990d230545b Mon Sep 17 00:00:00 2001 From: Bill Wang Date: Fri, 13 Jul 2018 12:35:21 +0000 Subject: [PATCH] #57 - manage root volume size and type --- README.md | 3 --- variables.tf | 15 --------------- 2 files changed, 18 deletions(-) diff --git a/README.md b/README.md index d7b049c..b5859a8 100644 --- a/README.md +++ b/README.md @@ -107,9 +107,6 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | map_accounts | Additional AWS account numbers to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `` | no | | map_roles | Additional IAM roles to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `` | no | | map_users | Additional IAM users to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `` | no | -| root_iops | The amount of provisioned IOPS. This must be set with a volume_type of 'io1'. | string | `0` | no | -| root_volume_size | The root size of the volume in gigabytes. | string | `20` | no | -| root_volume_type | The type of root volume. Can be 'standard', 'gp2', or 'io1' | string | `gp2` | no | | subnets | A list of subnets to place the EKS cluster and workers within. | list | - | yes | | tags | A map of tags to add to all resources. | map | `` | no | | vpc_id | VPC where the cluster and workers will be deployed. | string | - | yes | diff --git a/variables.tf b/variables.tf index a08b21c..2de0ea9 100644 --- a/variables.tf +++ b/variables.tf @@ -65,21 +65,6 @@ 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 = "0" -} - variable "worker_groups" { description = "A list of maps defining worker group configurations. See workers_group_defaults for valid keys." type = "list"