diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf index 0b74ad59071d6667650d90d6b9dee31ded08afdb..21c537ffadd3f7b1f41e3cf2b17921657a2b2665 100644 --- a/tf-stage1/archlinux.tf +++ b/tf-stage1/archlinux.tf @@ -141,6 +141,10 @@ locals { server_type = "cx11" domain = "redirect" } + "repos-git.archlinux.org" = { + server_type = "cpx11" + domain = "repos-git" + } "reproducible.archlinux.org" = { server_type = "cx11" domain = "reproducible" @@ -623,3 +627,10 @@ 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 +}