about summary refs log tree commit diff
path: root/ops/glesys/dns-nixery-dev.tf
blob: 53a421d20e3428ab2022f3274d023c60f56dcfe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# DNS configuration for nixery.dev
#
# TODO(tazjin): Figure out what to do with //ops/dns for this. I'd
# like to keep zonefiles in case we move providers again, but maybe
# generate something from them. Not sure yet.

resource "glesys_dnsdomain" "nixery_dev" {
  name = "nixery.dev"
}

resource "glesys_dnsdomain_record" "nixery_dev_apex_A" {
  domain = glesys_dnsdomain.nixery_dev.id
  host   = "@"
  type   = "A"
  data   = var.whitby_ipv4
}

resource "glesys_dnsdomain_record" "nixery_dev_apex_AAAA" {
  domain = glesys_dnsdomain.nixery_dev.id
  host   = "@"
  type   = "AAAA"
  data   = var.whitby_ipv6
}

resource "glesys_dnsdomain_record" "nixery_dev_NS1" {
  domain = glesys_dnsdomain.nixery_dev.id
  host   = "@"
  type   = "NS"
  data   = "ns1.namesystem.se."
}

resource "glesys_dnsdomain_record" "nixery_dev_NS2" {
  domain = glesys_dnsdomain.nixery_dev.id
  host   = "@"
  type   = "NS"
  data   = "ns2.namesystem.se."
}

resource "glesys_dnsdomain_record" "nixery_dev_NS3" {
  domain = glesys_dnsdomain.nixery_dev.id
  host   = "@"
  type   = "NS"
  data   = "ns3.namesystem.se."
}