@cryptotaxi247 / infra / commits / 523a67af

Add live.nixos.org DNS entry (#213)

* Add live.nixos.org DNS entry For the Summer of Nix Lecture Series we set up an Owncast instance, currently running under live.bjth.xyz. I'd be better marketing if we ran that under live.nixos.org instead :). * Add IPv6 and TXT record for live.nixos.org * Fix typo, it's not owncloud but owncast

Bryan Honof committed Jul 21, 2022 at 08:03 UTC 523a67af7ea29bdb7d124336bbdd52d9658dead5
1 file changed +15
terraform/dns.tf
+15
@@ -186,6 +186,21 @@ locals {
186 type = "TXT"
187 value = "v=spf1 include:spf.improvmx.com ~all"
188 },
189 + {
190 + hostname = "live.nixos.org"
191 + type = "TXT"
192 + value = "machine-owner=@bryanhonof provider=hetzner-cloud service=owncast"
193 + },
194 + {
195 + hostname = "live.nixos.org"
196 + type = "A"
197 + value = "167.235.51.204"
198 + },
199 + {
200 + hostname = "live.nixos.org"
201 + type = "AAAA"
202 + value = "2a01:4f8:c0c:96cc::42"
203 + },
204 ]
205 }
206