This commit is contained in:
tolerryan
2025-11-04 01:08:10 -06:00
parent 04bf6acbc4
commit b4786091be
2 changed files with 10 additions and 24 deletions

View File

@@ -1,9 +1,3 @@
module "ansible_setup" {
source = "./provider.tf"
hostname = "wikmd"
ip = "192.168.0.56"
}
resource "proxmox_lxc" "wikmd" {
target_node = "ryuk"
hostname = var.hostname
@@ -43,4 +37,10 @@ resource "proxmox_lxc" "wikmd" {
ip = "${var.ip}/24"
gw = "192.168.0.1"
}
module "ansible_setup" {
source = "./ansible_setup.tf"
hostname = "wikmd"
ip = "192.168.0.56"
}
}