Files

8 lines
276 B
Terraform
Raw Permalink Normal View History

2026-03-14 20:43:35 +01:00
resource "local_file" "ansible_inventory" {
content = templatefile("${path.module}/templates/inventory.yml.tftpl", {
galera_servers = proxmox_vm_qemu.galera
bastion = proxmox_vm_qemu.jumphost
})
2026-03-14 22:20:27 +01:00
filename = "${path.module}/../inventory/terraform_hosts.ini"
2026-03-14 20:43:35 +01:00
}