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 ccea645..4249e07 100644 --- a/ansible/group_vars/all/ipam.yml +++ b/ansible/group_vars/all/ipam.yml @@ -48,6 +48,7 @@ ipam6: hosts: lhn2ix: "fdb1:4242:3538:2008::1" lhn2pi: "fdb1:4242:3538:2008::ffff/64" + lhn2pi-wifi: "fdb1:4242:3538:2008:da3a:ddff:fe39:3669/64" lhn2-z2m: "fdb1:4242:3538:2008:9aed:e460:1711:07dd" ha-lhn2: "fdb1:4242:3538:2008:9c59:926f:1dc9:89db" conflatorio: "fdb1:4242:3538:2008:8042:32ff:fe0c:7161" diff --git a/terraform/dns/dn42.tf b/terraform/dns/dn42.tf index 504bd24..ea66493 100644 --- a/terraform/dns/dn42.tf +++ b/terraform/dns/dn42.tf @@ -91,6 +91,13 @@ resource "linode_domain_record" "dn42-lhn2pi" { target = "fdb1:4242:3538:2008::ffff" } +resource "linode_domain_record" "dn42-lhn2pi-wifi" { + domain_id = linode_domain.root.id + name = "lhn2pi-wifi.dn42" + record_type = "AAAA" + target = "fdb1:4242:3538:2008:da3a:ddff:fe39:3669" +} + resource "linode_domain_record" "dn42-netbox" { domain_id = linode_domain.root.id name = "netbox.dn42" diff --git a/terraform/ipam6/ipam6.tf b/terraform/ipam6/ipam6.tf index 5c3f54d..88625f0 100644 --- a/terraform/ipam6/ipam6.tf +++ b/terraform/ipam6/ipam6.tf @@ -127,6 +127,10 @@ output "networks" { address : "fdb1:4242:3538:2008::ffff" prefix : "64" } + lhn2pi-wifi = { + address : "fdb1:4242:3538:2008:da3a:ddff:fe39:3669" + prefix : "64" + } lhn2-z2m = { address : "fdb1:4242:3538:2008:9aed:e460:1711:7dd" prefix : "128" @@ -238,6 +242,10 @@ output "hosts" { address : "fdb1:4242:3538:2008::ffff" prefix : "64" } + lhn2pi-wifi = { + address : "fdb1:4242:3538:2008:da3a:ddff:fe39:3669" + prefix : "64" + } lhn2-z2m = { address : "fdb1:4242:3538:2008:9aed:e460:1711:7dd" prefix : "128" |
