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

This commit is contained in:
CC
2026-05-21 17:40:30 +01:00
parent da2362d0a9
commit e40fb6742a

View File

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