From cdf447a4f8adc09ad23a7ae0e523170b9b6d5125 Mon Sep 17 00:00:00 2001 From: Carson Ip Date: Mon, 27 Jan 2025 22:19:47 +0000 Subject: [PATCH] tf: default volume type to gp3 --- 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 d50b10cffcf..25671ad3253 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" }