Message ID | 20250310141813.969325-2-cel@kernel.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Block device provisioning for storage nodes | expand |
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" {