From 51c67ab35b2b17c1cc64f2f3b74ce99066af0221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arthur=20Woimb=C3=A9e?= Date: Fri, 10 Jan 2025 11:25:48 +0100 Subject: [PATCH] gp2 -> gp3 disk type --- tools/pubsys/src/aws/ami/register.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pubsys/src/aws/ami/register.rs b/tools/pubsys/src/aws/ami/register.rs index a5202753f..ac3ee24c4 100644 --- a/tools/pubsys/src/aws/ami/register.rs +++ b/tools/pubsys/src/aws/ami/register.rs @@ -15,7 +15,7 @@ const DATA_DEVICE_NAME: &str = "/dev/xvdb"; // Features we assume/enable for the images. const VIRT_TYPE: &str = "hvm"; -const VOLUME_TYPE: &str = "gp2"; +const VOLUME_TYPE: &str = "gp3"; const SRIOV: &str = "simple"; const ENA: bool = true;