From d72fec1b325aff7b385f9a206e082f6d84a264a0 Mon Sep 17 00:00:00 2001 From: Brian Hayden <5826711+bhayden53@users.noreply.github.com> Date: Mon, 10 May 2021 19:25:11 -0400 Subject: [PATCH] quickfix for ebs volume on ops --- terraform/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index 37f86ccf..841b275a 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -52,7 +52,7 @@ variable lt_ebs_type { "-sb" = "gp2" "-dev" = "gp2" "-test" = "gp3" - "-ops" = "gp2" + "-ops" = "gp3" } } @@ -65,7 +65,7 @@ variable lt_ebs_iops { "-sb" = 0 "-dev" = 0 "-test" = 3000 - "-ops" = 0 + "-ops" = 3000 } } @@ -78,7 +78,7 @@ variable lt_ebs_throughput { "-sb" = null "-dev" = null "-test" = 250 - "-ops" = null + "-ops" = 250 } }