ci/cd abs path
Some checks failed
Deploy VM and App / terraform-ansible-deploy (push) Failing after 7s

This commit is contained in:
CC
2026-05-21 17:34:28 +01:00
parent 80c611ecda
commit eded1b9777

View File

@@ -30,12 +30,14 @@ output "vm_tag_data" {
}
}
output "inventory_file" {
description = "Path to the generated Ansible inventory"
value = module.inventory.filename
module "inventory" {
source = "./modules/proxmox_ansible_inventory"
filename = "${abspath("${path.root}/..")}/ansible/inventory/inventory.yml"
instances = local.vm_created
}
output "vm_data_file" {
description = "Path to the generated VM data file"
value = module.vm_data.filename
}
module "vm_data" {
source = "./modules/proxmox_vm_data"
filename = "${abspath("${path.root}/..")}/terraform/vm_data.yml"
instances = local.vm_created
}