diff options
Diffstat (limited to 'terraform/dns')
-rw-r--r-- | terraform/dns/dn42.tf | 39 | ||||
-rw-r--r-- | terraform/dns/trygvis.tf | 21 |
2 files changed, 58 insertions, 2 deletions
diff --git a/terraform/dns/dn42.tf b/terraform/dns/dn42.tf index 9f70413..c7aab96 100644 --- a/terraform/dns/dn42.tf +++ b/terraform/dns/dn42.tf @@ -11,7 +11,7 @@ resource "linode_domain_record" "dn42-coregonus" { domain_id = linode_domain.root.id name = "coregonus.dn42" record_type = "AAAA" - target = "fdb1:4242:3538:2005::ffff" + target = "fdb1:4242:3538:2006:2e0:4cff:fe98:1bb5" } resource "linode_domain_record" "dn42-danneri" { @@ -21,11 +21,25 @@ resource "linode_domain_record" "dn42-danneri" { target = "fdb1:4242:3538:2008:9422:d355:95b7:f170" } +resource "linode_domain_record" "dn42-garasjepi" { + domain_id = linode_domain.root.id + name = "garasjepi.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2006:e9f7:418f:49fd:8d2e" +} + resource "linode_domain_record" "dn42-ha-kv24" { domain_id = linode_domain.root.id name = "ha-kv24.dn42" record_type = "AAAA" - target = "fdb1:4242:3538:2005:c534:9d54:8212:1ced" + target = "fdb1:4242:3538:2006:18a:90f:4264:8ca0" +} + +resource "linode_domain_record" "dn42-ha-lhn2" { + domain_id = linode_domain.root.id + name = "ha-lhn2.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2008:9c59:926f:1dc9:89db" } resource "linode_domain_record" "dn42-hash" { @@ -35,6 +49,13 @@ resource "linode_domain_record" "dn42-hash" { target = "fdb1:4242:3538:2007::ffff" } +resource "linode_domain_record" "dn42-kjell" { + domain_id = linode_domain.root.id + name = "kjell.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2006:2f0:cbff:fefe:d98c" +} + resource "linode_domain_record" "dn42-knot" { domain_id = linode_domain.root.id name = "knot.dn42" @@ -49,6 +70,13 @@ resource "linode_domain_record" "dn42-kv24ix" { target = "fdb1:4242:3538:2006::ffff" } +resource "linode_domain_record" "dn42-lhn2-z2m" { + domain_id = linode_domain.root.id + name = "lhn2-z2m.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2008:9aed:e460:1711:7dd" +} + resource "linode_domain_record" "dn42-lhn2pi" { domain_id = linode_domain.root.id name = "lhn2pi.dn42" @@ -56,6 +84,13 @@ resource "linode_domain_record" "dn42-lhn2pi" { target = "fdb1:4242:3538:2008::ffff" } +resource "linode_domain_record" "dn42-netbox" { + domain_id = linode_domain.root.id + name = "netbox.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2006:be24:11ff:febb:5c7f" +} + resource "linode_domain_record" "dn42-node1" { domain_id = linode_domain.root.id name = "node1.dn42" diff --git a/terraform/dns/trygvis.tf b/terraform/dns/trygvis.tf index 2a6752f..5dfc8cb 100644 --- a/terraform/dns/trygvis.tf +++ b/terraform/dns/trygvis.tf @@ -17,6 +17,13 @@ resource "linode_domain_record" "root-a" { target = "176.58.112.84" } +resource "linode_domain_record" "root-aaaa" { + domain_id = linode_domain.root.id + name = "" + record_type = "AAAA" + target = "2a01:7e00::f03c:91ff:feae:93a3" +} + resource "linode_domain_record" "root-mx" { domain_id = linode_domain.root.id name = "" @@ -165,6 +172,20 @@ resource "linode_domain_record" "kv24" { target = "trygvis.io" } +resource "linode_domain_record" "kv24ix" { + domain_id = linode_domain.root.id + name = "kv24ix" + record_type = "A" + target = "81.166.205.176" +} + +resource "linode_domain_record" "lhn2" { + domain_id = linode_domain.root.id + name = "lhn2" + record_type = "CNAME" + target = "trygvis.io" +} + # Aliases for vs.trygvis.io resource "linode_domain_record" "nextcloud" { domain_id = linode_domain.root.id |