@cryptotaxi247 / infra / commits / d920ced6

hetzner-01: rename to caliban.nixos.org

We needed a name to create CNAMES to eventually, so here is one proposal, since we're going for pet names. Caliban is the second largest moon of Uranus, and should somewhat fit into the existing naming scheme. https://en.wikipedia.org/wiki/Caliban_(moon) Once we have the DNS name deployed we can update the deployment address accordingly.

Martin Weinelt committed Sep 11, 2023 at 00:13 UTC d920ced6f8d8577ae6ad80942fab229ce2971759
4 files changed +15 -3
non-critical-infra/hosts/caliban/default.nix renamed
+5 -3
@@ -24,9 +24,11 @@
24 ];
25 boot.loader.grub.useOSProber = true;
26
27 -
28 - networking.hostName = "hetzner-01"; # Define your hostname.
29 - networking.hostId = "745b334a";
27 + networking = {
28 + hostName = "caliban";
29 + domain = "nixos.org";
30 + hostId = "745b334a";
31 + };
32
33 disko.devices = import ./disko.nix;
34
non-critical-infra/hosts/caliban/disko.nix renamed
non-critical-infra/hosts/caliban/hardware.nix renamed
terraform/dns.tf
+10
@@ -246,6 +246,16 @@ locals {
246 type = "CNAME"
247 value = "20th-nix.pages.dev"
248 },
249 + {
250 + hostname = "caliban.nixos.org"
251 + type = "AAAA"
252 + value = "2a01:4f9:5a:186c::2"
253 + },
254 + {
255 + hostname = "caliban.nixos.org"
256 + type = "A"
257 + value = "65.109.26.213"
258 + }
259 ]
260 }
261