Add initial Terraform configuration for Azure and Proxmox resources

This commit is contained in:
2026-03-01 14:16:44 +02:00
parent 44d658745e
commit b11172504d
17 changed files with 869 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
output "container_id" {
description = "The VMID of the Foundry LXC container."
value = proxmox_virtual_environment_container.foundry.vm_id
}
output "hostname" {
description = "The hostname of the container."
value = var.hostname
}
output "ip_address" {
description = "The configured IP address (or 'dhcp')."
value = var.ip_address
}