From ef0060dc3e05a6ba76eb4a55c0bb3f881740f814 Mon Sep 17 00:00:00 2001 From: Carson Ip Date: Mon, 27 Jan 2025 22:30:53 +0000 Subject: [PATCH] tf: default volume type to gp3 (#15410) Change default benchmark standalone apm server volume type to gp3, as gp2's burstiness makes it unreliable for benchmarks. --- testing/benchmark/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/benchmark/variables.tf b/testing/benchmark/variables.tf index d50b10cffc..25671ad325 100644 --- a/testing/benchmark/variables.tf +++ b/testing/benchmark/variables.tf @@ -131,7 +131,7 @@ variable "standalone_moxy_instance_size" { } variable "standalone_apm_server_volume_type" { - default = null + default = "gp3" type = string description = "Optional volume type to use for APM Server VM" }