This commit is contained in:
tolerryan
2025-11-04 01:22:12 -06:00
parent 833c9fa483
commit f1c62f9524
2 changed files with 12 additions and 12 deletions

View File

@@ -37,10 +37,10 @@ resource "proxmox_lxc" "test2" {
ip = "192.168.0.64/24" ip = "192.168.0.64/24"
gw = "192.168.0.1" gw = "192.168.0.1"
} }
}
module "ansible_setup" {
source = "./modules/ansible_setup.tf" module "ansible_setup" {
hostname = "test2" source = "./modules/ansible_setup.tf"
ip = "192.168.0.64" hostname = "test2"
} ip = "192.168.0.64"
} }

View File

@@ -37,10 +37,10 @@ resource "proxmox_lxc" "wikmd" {
ip = "192.168.0.56/24" ip = "192.168.0.56/24"
gw = "192.168.0.1" gw = "192.168.0.1"
} }
}
module "ansible_setup" {
source = "./ansible_setup.tf" module "ansible_setup" {
hostname = "wikmd" source = "./ansible_setup.tf"
ip = "192.168.0.56" hostname = "wikmd"
} ip = "192.168.0.56"
} }