Added terraform for lightning-lane
This commit is contained in:
21
terraform/proxmox/hosts/outputs.tf
Normal file
21
terraform/proxmox/hosts/outputs.tf
Normal file
@@ -0,0 +1,21 @@
|
||||
# ─── Outputs ─────────────────────────────────────────────────────────────────
|
||||
|
||||
output "vm_id" {
|
||||
description = "Proxmox VM ID"
|
||||
value = module.vm.vm_id
|
||||
}
|
||||
|
||||
output "hostname" {
|
||||
description = "VM hostname"
|
||||
value = var.hostname
|
||||
}
|
||||
|
||||
output "ip_address" {
|
||||
description = "VM IP address"
|
||||
value = var.ip_address
|
||||
}
|
||||
|
||||
output "target_node" {
|
||||
description = "Proxmox node the VM is placed on"
|
||||
value = var.target_node
|
||||
}
|
||||
Reference in New Issue
Block a user