Change AWS default disk type from gp2 to gp3

* https://aws.amazon.com/about-aws/whats-new/2020/12/introducing-new-amazon-ebs-general-purpose-volumes-gp3/
This commit is contained in:
Dalton Hubble
2021-07-04 10:41:53 -07:00
parent 3a71b2ccb1
commit 66e7354c8a
8 changed files with 15 additions and 11 deletions

View File

@ -53,8 +53,8 @@ variable "disk_size" {
variable "disk_type" {
type = string
description = "Type of the EBS volume (e.g. standard, gp2, io1)"
default = "gp2"
description = "Type of the EBS volume (e.g. standard, gp2, gp3, io1)"
default = "gp3"
}
variable "disk_iops" {