Skip to content

Commit 76537d1

Browse files
authored
feat: Use gp3 as default as it saves 20% and is more performant (#1134)
BREAKING CHANGES: The default root volume type is now `gp3` as it saves 20% and is more performant
1 parent 576aa29 commit 76537d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

local.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ locals {
4343
spot_price = "" # Cost of spot instance.
4444
placement_tenancy = "" # The tenancy of the instance. Valid values are "default" or "dedicated".
4545
root_volume_size = "100" # root volume size of workers instances.
46-
root_volume_type = "gp2" # root volume type of workers instances, can be 'standard', 'gp2', or 'io1'
46+
root_volume_type = "gp3" # root volume type of workers instances, can be "standard", "gp3", "gp2", or "io1"
4747
root_iops = "0" # The amount of provisioned IOPS. This must be set with a volume_type of "io1".
4848
root_volume_throughput = null # The amount of throughput to provision for a gp3 volume.
4949
key_name = "" # The key pair name that should be used for the instances in the autoscaling group

0 commit comments

Comments
 (0)