From ae827fd6c836d6ad39ad8f0e130c056bd45ca838 Mon Sep 17 00:00:00 2001 From: Evangelos Foutras Date: Sun, 28 May 2023 12:52:53 +0300 Subject: [PATCH] tf-stage1: remove git repos experimental servers This has moved to production. --- tf-stage1/archlinux.tf | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf index 1bad7dc1..7d625b30 100644 --- a/tf-stage1/archlinux.tf +++ b/tf-stage1/archlinux.tf @@ -134,14 +134,6 @@ locals { server_type = "cx11" domain = "redirect" } - "repos-git.archlinux.org" = { - server_type = "cpx11" - domain = "repos-git" - } - "repos.sandbox.archlinux.org" = { - server_type = "cpx21" - domain = "repos.sandbox" - } "reproducible.archlinux.org" = { server_type = "cx11" domain = "reproducible" @@ -304,7 +296,6 @@ locals { registry = { value = "gitlab" } repos = { value = "gemini" } rsync = { value = "gemini" } - "rsync.sandbox" = { value = "repos.sandbox" } sources = { value = "gemini" } "static.conf" = { value = "redirect" } status = { value = "stats.uptimerobot.com." } @@ -621,17 +612,3 @@ resource "hcloud_volume" "debuginfod" { server_id = hcloud_server.machine["debuginfod.archlinux.org"].id delete_protection = true } - -resource "hcloud_volume" "repos-git" { - name = "repos-git" - size = 100 - server_id = hcloud_server.machine["repos-git.archlinux.org"].id - delete_protection = true -} - -resource "hcloud_volume" "repos_sandbox" { - name = "repos.sandbox" - size = 500 - server_id = hcloud_server.machine["repos.sandbox.archlinux.org"].id - delete_protection = true -}