From 78a2175c081d6daaf7ac458d08896ac0b6adeaa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 5 Oct 2022 20:48:02 +0200 Subject: [PATCH] status: increase data volume size to 60 GB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Necessary to fix SQLite databases after interrupted migration. Signed-off-by: Jakub SokoĊ‚owski --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 502f077..c0e91d3 100644 --- a/variables.tf +++ b/variables.tf @@ -7,5 +7,5 @@ variable "domain" { variable "data_volume_size" { description = "Size of extra data volumes for nodes in GB" type = number - default = 40 + default = 60 }