From 5a99d4f1b9fa50671b28741a07af18e5bd1bcfc3 Mon Sep 17 00:00:00 2001
From: Sven-Hendrik Haase <svenstaro@gmail.com>
Date: Thu, 13 Aug 2020 21:07:15 +0200
Subject: [PATCH] Add hcloud volume to mirror.pkgbuild.com

---
 tf-stage1/archlinux.tf | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf
index 18fb1c9d1..b0186be9c 100644
--- a/tf-stage1/archlinux.tf
+++ b/tf-stage1/archlinux.tf
@@ -112,6 +112,12 @@ resource "hcloud_server" "accounts" {
   }
 }
 
+resource "hcloud_volume" "mirror" {
+  name = "mirror"
+  size = 100
+  server_id = hcloud_server.mirror.id
+}
+
 resource "hcloud_rdns" "mirror" {
   server_id  = hcloud_server.mirror.id
   ip_address = hcloud_server.mirror.ipv4_address
-- 
GitLab