From 1050ebc2d8d94cede2af2b2aa4aee3c011cd7184 Mon Sep 17 00:00:00 2001 From: Evangelos Foutras <evangelos@foutrelis.com> Date: Mon, 18 Jul 2022 12:24:13 +0300 Subject: [PATCH] tf-stage1: sort machine entries by hostname --- tf-stage1/archlinux.tf | 60 +++++++++++++++++++++--------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf index ee85e1551..367ffe9ed 100644 --- a/tf-stage1/archlinux.tf +++ b/tf-stage1/archlinux.tf @@ -47,14 +47,14 @@ locals { # ttl = 3600 # } machines = { - "archlinux.org" = { - server_type = "cpx11" - domain = "@" - } "accounts.archlinux.org" = { server_type = "cx11" domain = "accounts" } + "archlinux.org" = { + server_type = "cpx11" + domain = "@" + } "aur.archlinux.org" = { server_type = "cpx41" domain = "aur" @@ -67,10 +67,27 @@ locals { server_type = "cx11" domain = "bugs" } + "buildbot.pkgbuild.com" = { + server_type = "cx21" + domain = "buildbot" + zone = hetznerdns_zone.pkgbuild.id + } + "dashboards.archlinux.org" = { + server_type = "cx11" + domain = "dashboards" + } + "debuginfod.archlinux.org" = { + server_type = "cx11" + domain = "debuginfod" + } "gitlab.archlinux.org" = { server_type = "cpx41" domain = "gitlab" } + "gluebuddy.archlinux.org" = { + server_type = "cx11" + domain = "gluebuddy" + } "homedir.archlinux.org" = { server_type = "cx11" domain = "homedir" @@ -95,14 +112,19 @@ locals { server_type = "cpx31" domain = "matrix" } + "md.archlinux.org" = { + server_type = "cx11" + domain = "md" + } + "mirror.pkgbuild.com" = { + server_type = "cx11" + domain = "mirror" + zone = hetznerdns_zone.pkgbuild.id + } "monitoring.archlinux.org" = { server_type = "cx31" domain = "monitoring" } - "dashboards.archlinux.org" = { - server_type = "cx11" - domain = "dashboards" - } "patchwork.archlinux.org" = { server_type = "cx11" domain = "patchwork" @@ -131,28 +153,6 @@ locals { server_type = "cpx21" domain = "wiki" } - "mirror.pkgbuild.com" = { - server_type = "cx11" - domain = "mirror" - zone = hetznerdns_zone.pkgbuild.id - } - "md.archlinux.org" = { - server_type = "cx11" - domain = "md" - }, - "gluebuddy.archlinux.org" = { - server_type = "cx11" - domain = "gluebuddy" - }, - "debuginfod.archlinux.org" = { - server_type = "cx11" - domain = "debuginfod" - } - "buildbot.pkgbuild.com" = { - server_type = "cx21" - domain = "buildbot" - zone = hetznerdns_zone.pkgbuild.id - } } # This creates gitlab pages verification entries. -- GitLab