diff options
| -rw-r--r-- | ansible/group_vars/all/ipam.yml | 1 | ||||
| -rw-r--r-- | terraform/dns/dn42.tf | 7 | ||||
| -rw-r--r-- | terraform/ipam6/ipam6.tf | 8 |
3 files changed, 16 insertions, 0 deletions
diff --git a/ansible/group_vars/all/ipam.yml b/ansible/group_vars/all/ipam.yml index fafe119..ae20b2d 100644 --- a/ansible/group_vars/all/ipam.yml +++ b/ansible/group_vars/all/ipam.yml @@ -36,6 +36,7 @@ ipam6: netbox: "fdb1:4242:3538:2006:be24:11ff:febb:5c7f/64" kjell: "fdb1:4242:3538:2006:2f0:cbff:fefe:d98c/64" nextcloud: "fdb1:4242:3538:2006:be24:11ff:fe56:770/64" + sdr: "fdb1:4242:3538:2006:be24:11ff:fe0b:cb99/64" hash_dn42: range: "fdb1:4242:3538:2007::/64" hosts: diff --git a/terraform/dns/dn42.tf b/terraform/dns/dn42.tf index 8798fc5..504bd24 100644 --- a/terraform/dns/dn42.tf +++ b/terraform/dns/dn42.tf @@ -119,6 +119,13 @@ resource "linode_domain_record" "dn42-node2" { target = "fdb1:4242:3538:2003::ffff" } +resource "linode_domain_record" "dn42-sdr" { + domain_id = linode_domain.root.id + name = "sdr.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2006:be24:11ff:fe0b:cb99" +} + resource "linode_domain_record" "dn42-unifi" { domain_id = linode_domain.root.id name = "unifi.dn42" diff --git a/terraform/ipam6/ipam6.tf b/terraform/ipam6/ipam6.tf index 60eb602..20d3b47 100644 --- a/terraform/ipam6/ipam6.tf +++ b/terraform/ipam6/ipam6.tf @@ -90,6 +90,10 @@ output "networks" { address : "fdb1:4242:3538:2006:be24:11ff:fe56:770" prefix : "64" } + sdr = { + address : "fdb1:4242:3538:2006:be24:11ff:fe0b:cb99" + prefix : "64" + } } } hash_dn42 = { @@ -218,6 +222,10 @@ output "hosts" { address : "fdb1:4242:3538:2006:be24:11ff:fe56:770" prefix : "64" } + sdr = { + address : "fdb1:4242:3538:2006:be24:11ff:fe0b:cb99" + prefix : "64" + } hash = { address : "fdb1:4242:3538:2007::ffff" prefix : "128" |
