Add working provisioning and configuration for MS SQL data warehouse
This commit is contained in:
19
provisioning/modules/vm/outputs.tf
Normal file
19
provisioning/modules/vm/outputs.tf
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user