Add working provisioning and configuration for MS SQL data warehouse

This commit is contained in:
2026-03-16 13:29:55 +01:00
parent 2eeffc604a
commit ee04f1ff1a
23 changed files with 1100 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
output "vm_id" {
description = "The Proxmox VM ID"
value = proxmox_virtual_environment_vm.this.vm_id
}
output "name" {
description = "The VM hostname"
value = proxmox_virtual_environment_vm.this.name
}
output "ipv4_addresses" {
description = "All IPv4 addresses reported by the QEMU agent"
value = proxmox_virtual_environment_vm.this.ipv4_addresses
}
output "mac_addresses" {
description = "MAC addresses of the network interfaces"
value = proxmox_virtual_environment_vm.this.mac_addresses
}