ip conflicts

This commit is contained in:
tolerryan
2025-11-29 00:16:20 -06:00
parent 326fcb10fd
commit 7fae43665d
2 changed files with 3 additions and 3 deletions

4
n8n.tf
View File

@@ -25,7 +25,7 @@ resource "proxmox_lxc" "n8n" {
network {
name = "eth0"
bridge = "vmbr0"
ip = "192.168.0.58/24"
ip = "192.168.0.69/24"
gw = "192.168.0.1"
}
@@ -33,7 +33,7 @@ resource "proxmox_lxc" "n8n" {
provisioner "local-exec" {
command = "./.ansible.d/setup.sh $IP"
environment = {
IP = "192.168.0.58"
IP = "192.168.0.69"
}
}