From cef74fb6296448e3e5fbc7db557f2431707b2df5 Mon Sep 17 00:00:00 2001
From: Sven-Hendrik Haase <svenstaro@gmail.com>
Date: Fri, 19 Mar 2021 05:41:40 +0100
Subject: [PATCH] Add 100G volume to monitoring

It was getting very cramped with only a few MBs left. It appears currently we only get about 6 months worth of data out of 20G
so 100G seems reasonable.
---
 tf-stage1/archlinux.tf | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf
index 18af35825..aa5794567 100644
--- a/tf-stage1/archlinux.tf
+++ b/tf-stage1/archlinux.tf
@@ -494,3 +494,9 @@ resource "hcloud_volume" "homedir" {
   size      = 100
   server_id = hcloud_server.machine["homedir.archlinux.org"].id
 }
+
+resource "hcloud_volume" "monitoring" {
+  name      = "monitoring"
+  size      = 100
+  server_id = hcloud_server.machine["monitoring.archlinux.org"].id
+}
-- 
GitLab