diff mbox series

[v1,01/13] terraform/AWS: Upgrade the EBS volume type to "gp3"

Message ID 20250310141813.969325-2-cel@kernel.org (mailing list archive)
State New
Headers show
Series Block device provisioning for storage nodes | expand

Commit Message

Chuck Lever March 10, 2025, 2:18 p.m. UTC
From: Chuck Lever <chuck.lever@oracle.com>

The default is "gp2".  We get better throughput with the newer
device type, helping tests run to completion more quickly.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 terraform/aws/main.tf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/terraform/aws/main.tf b/terraform/aws/main.tf
index a9407a745bcc..4679ca79159c 100644
--- a/terraform/aws/main.tf
+++ b/terraform/aws/main.tf
@@ -145,7 +145,8 @@  resource "aws_instance" "kdevops_instance" {
 resource "aws_ebs_volume" "kdevops_vols" {
   count             = var.aws_enable_ebs == "true" ? local.kdevops_num_boxes * var.aws_ebs_num_volumes_per_instance : 0
   availability_zone = var.aws_availability_region
-  size = var.aws_ebs_volume_size
+  size              = var.aws_ebs_volume_size
+  type              = "gp3"
 }
 
 resource "aws_volume_attachment" "kdevops_att" {