aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ansible/group_vars/all/ipam.yml2
-rw-r--r--terraform/dns/dn42.tf2
-rw-r--r--terraform/ipam6/ipam6.tf4
-rw-r--r--terraform/lhn2pi-zigbee2mqtt/main.tf2
4 files changed, 5 insertions, 5 deletions
diff --git a/ansible/group_vars/all/ipam.yml b/ansible/group_vars/all/ipam.yml
index 96923bc..63ae1ad 100644
--- a/ansible/group_vars/all/ipam.yml
+++ b/ansible/group_vars/all/ipam.yml
@@ -50,7 +50,7 @@ ipam6:
hosts:
lhn2pi: "fdb1:4242:3538:2008::ffff"
lhn2-z2m: "fdb1:4242:3538:2008:9aed:e460:1711:07dd"
- ha-lhn2: "fdb1:4242:3538:2008:d6f6:9b99:6a53:da1e"
+ ha-lhn2: "fdb1:4242:3538:2008:9c59:926f:1dc9:89db"
conflatorio: "fdb1:4242:3538:2008:8042:32ff:fe0c:7161"
danneri: "fdb1:4242:3538:2008:9422:d355:95b7:f170"
unifi: "fdb1:4242:3538:2008:5054:ff:fe4d:96c"
diff --git a/terraform/dns/dn42.tf b/terraform/dns/dn42.tf
index 04f67cb..7acdc5a 100644
--- a/terraform/dns/dn42.tf
+++ b/terraform/dns/dn42.tf
@@ -32,7 +32,7 @@ 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:d6f6:9b99:6a53:da1e"
+ target = "fdb1:4242:3538:2008:9c59:926f:1dc9:89db"
}
resource "linode_domain_record" "dn42-hash" {
diff --git a/terraform/ipam6/ipam6.tf b/terraform/ipam6/ipam6.tf
index 555504d..74a6fe4 100644
--- a/terraform/ipam6/ipam6.tf
+++ b/terraform/ipam6/ipam6.tf
@@ -126,7 +126,7 @@ output "networks" {
prefix : "128"
}
ha-lhn2 = {
- address : "fdb1:4242:3538:2008:d6f6:9b99:6a53:da1e"
+ address : "fdb1:4242:3538:2008:9c59:926f:1dc9:89db"
prefix : "128"
}
conflatorio = {
@@ -206,7 +206,7 @@ output "hosts" {
prefix : "128"
}
ha-lhn2 = {
- address : "fdb1:4242:3538:2008:d6f6:9b99:6a53:da1e"
+ address : "fdb1:4242:3538:2008:9c59:926f:1dc9:89db"
prefix : "128"
}
conflatorio = {
diff --git a/terraform/lhn2pi-zigbee2mqtt/main.tf b/terraform/lhn2pi-zigbee2mqtt/main.tf
index 4182db8..1aefaaa 100644
--- a/terraform/lhn2pi-zigbee2mqtt/main.tf
+++ b/terraform/lhn2pi-zigbee2mqtt/main.tf
@@ -25,7 +25,7 @@ provider "docker" {
locals {
docker_image = "koenkk/zigbee2mqtt:1.42.0"
- public_ip = module.ipam.hosts.lhn2-z2m.address
+ public_ip = module.ipam.hosts.lhn2pi.address
}
module "ipam" {