From 86253a8718aeda96660aa26a21bd60006f7cd45e Mon Sep 17 00:00:00 2001 From: Jay Zalowitz Date: Wed, 2 Dec 2020 21:58:01 -0800 Subject: [PATCH 1/2] Add gp3 as default as it saves 20% and is more performant --- local.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.tf b/local.tf index bb23a6337f..5bd8bf57c7 100644 --- a/local.tf +++ b/local.tf @@ -42,7 +42,7 @@ locals { spot_price = "" # Cost of spot instance. placement_tenancy = "" # The tenancy of the instance. Valid values are "default" or "dedicated". root_volume_size = "100" # root volume size of workers instances. - root_volume_type = "gp2" # root volume type of workers instances, can be 'standard', 'gp2', or 'io1' + root_volume_type = "gp3" # root volume type of workers instances, can be 'standard', 'gp3', 'gp2', or 'io1' root_iops = "0" # The amount of provisioned IOPS. This must be set with a volume_type of "io1". key_name = "" # The key pair name that should be used for the instances in the autoscaling group pre_userdata = "" # userdata to pre-append to the default userdata. From 88a3706fa12565ec6cca8c95c8d8716ba72c62b1 Mon Sep 17 00:00:00 2001 From: Jay Zalowitz Date: Mon, 14 Dec 2020 12:42:25 -0800 Subject: [PATCH 2/2] cleanup --- local.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.tf b/local.tf index 5bd8bf57c7..af376c3373 100644 --- a/local.tf +++ b/local.tf @@ -42,7 +42,7 @@ locals { spot_price = "" # Cost of spot instance. placement_tenancy = "" # The tenancy of the instance. Valid values are "default" or "dedicated". root_volume_size = "100" # root volume size of workers instances. - root_volume_type = "gp3" # root volume type of workers instances, can be 'standard', 'gp3', 'gp2', or 'io1' + root_volume_type = "gp3" # root volume type of workers instances, can be "standard", "gp3", "gp2", or "io1" root_iops = "0" # The amount of provisioned IOPS. This must be set with a volume_type of "io1". key_name = "" # The key pair name that should be used for the instances in the autoscaling group pre_userdata = "" # userdata to pre-append to the default userdata.