Skip to content

Commit 93d37f6

Browse files
committed
Fix bgp ipv6 node addr
1 parent f5f59b8 commit 93d37f6

File tree

1 file changed

+2
-2
lines changed
  • terraform/modules/supernode

1 file changed

+2
-2
lines changed

terraform/modules/supernode/bgp.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ resource "netboxbgp_session" "cores_to_node_v6" {
5959
local_as = var.bgp_asn_id
6060
remote_as = var.bgp_asn_id
6161
local_address = each.value.v6_id
62-
remote_address = netbox_available_ip_address.primary_ipv6.id
62+
remote_address = netbox_ip_address.management_ipv6.id
6363

6464
prefix_list_out = local.pfxlist_default["ipv6"]
6565
prefix_list_in = netboxbgp_prefix_list.node["v6"].id
@@ -94,7 +94,7 @@ resource "netboxbgp_session" "node_to_cores_v6" {
9494

9595
local_as = var.bgp_asn_id
9696
remote_as = var.bgp_asn_id
97-
local_address = netbox_available_ip_address.primary_ipv6.id
97+
local_address = netbox_ip_address.management_ipv6.id
9898
remote_address = each.value.v6_id
9999

100100
prefix_list_out = netboxbgp_prefix_list.node["v6"].id

0 commit comments

Comments
 (0)