Skip to content

Commit 73c5107

Browse files
authored
fix: Default root_volume_type must be gp2 (#1404)
1 parent 1dc56fd commit 73c5107

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
@@ -46,7 +46,7 @@ locals {
4646
spot_price = "" # Cost of spot instance.
4747
placement_tenancy = "" # The tenancy of the instance. Valid values are "default" or "dedicated".
4848
root_volume_size = "100" # root volume size of workers instances.
49-
root_volume_type = "gp3" # root volume type of workers instances, can be "standard", "gp3", "gp2", or "io1"
49+
root_volume_type = "gp2" # root volume type of workers instances, can be "standard", "gp3", "gp2", or "io1"
5050
root_iops = "0" # The amount of provisioned IOPS. This must be set with a volume_type of "io1".
5151
root_volume_throughput = null # The amount of throughput to provision for a gp3 volume.
5252
key_name = "" # The key pair name that should be used for the instances in the autoscaling group

0 commit comments

Comments
 (0)