Skip to content

Commit 4eef91e

Browse files
committed
#57 - manage root volume size and type
1 parent 5e941e1 commit 4eef91e

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,6 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
107107
| map_accounts | Additional AWS account numbers to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `<list>` | no |
108108
| map_roles | Additional IAM roles to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `<list>` | no |
109109
| map_users | Additional IAM users to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `<list>` | no |
110-
| root_iops | The amount of provisioned IOPS. This must be set with a volume_type of 'io1'. | string | `0` | no |
111-
| root_volume_size | The root size of the volume in gigabytes. | string | `20` | no |
112-
| root_volume_type | The type of root volume. Can be 'standard', 'gp2', or 'io1' | string | `gp2` | no |
113110
| subnets | A list of subnets to place the EKS cluster and workers within. | list | - | yes |
114111
| tags | A map of tags to add to all resources. | map | `<map>` | no |
115112
| vpc_id | VPC where the cluster and workers will be deployed. | string | - | yes |

variables.tf

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,6 @@ variable "vpc_id" {
6565
description = "VPC where the cluster and workers will be deployed."
6666
}
6767

68-
variable "root_volume_size" {
69-
description = "The root size of the volume in gigabytes."
70-
default = "20"
71-
}
72-
73-
variable "root_volume_type" {
74-
description = "The type of root volume. Can be 'standard', 'gp2', or 'io1'"
75-
default = "gp2"
76-
}
77-
78-
variable "root_iops" {
79-
description = "The amount of provisioned IOPS. This must be set with a volume_type of 'io1'."
80-
default = "0"
81-
}
82-
8368
variable "worker_groups" {
8469
description = "A list of maps defining worker group configurations. See workers_group_defaults for valid keys."
8570
type = "list"

0 commit comments

Comments
 (0)