This commit is contained in:
tolerryan
2025-11-04 01:20:08 -06:00
parent 7db6541bad
commit 833c9fa483
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
resource "proxmox_lxc" "test2" { resource "proxmox_lxc" "test2" {
target_node = "ryuk" target_node = "ryuk"
hostname = var.hostname hostname = "test2"
vmid = 217 vmid = 217
ostemplate = "cephfs:vztmpl/debian-13-standard_13.1-2_amd64.tar.zst" ostemplate = "cephfs:vztmpl/debian-13-standard_13.1-2_amd64.tar.zst"
password = "terraform" password = "terraform"
@@ -34,7 +34,7 @@ resource "proxmox_lxc" "test2" {
network { network {
name = "eth0" name = "eth0"
bridge = "vmbr0" bridge = "vmbr0"
ip = "${var.ip}/24" ip = "192.168.0.64/24"
gw = "192.168.0.1" gw = "192.168.0.1"
} }

View File

@@ -1,6 +1,6 @@
resource "proxmox_lxc" "wikmd" { resource "proxmox_lxc" "wikmd" {
target_node = "ryuk" target_node = "ryuk"
hostname = var.hostname hostname = "wikmd"
vmid = 217 vmid = 217
ostemplate = "cephfs:vztmpl/debian-13-standard_13.1-2_amd64.tar.zst" ostemplate = "cephfs:vztmpl/debian-13-standard_13.1-2_amd64.tar.zst"
password = "terraform" password = "terraform"
@@ -34,7 +34,7 @@ resource "proxmox_lxc" "wikmd" {
network { network {
name = "eth0" name = "eth0"
bridge = "vmbr0" bridge = "vmbr0"
ip = "${var.ip}/24" ip = "192.168.0.56/24"
gw = "192.168.0.1" gw = "192.168.0.1"
} }