Newer
Older
openstack-caracal-dc-dc / opentofu / modules / dc-planes / outputs.tf
output "network_ids" {
  description = "libvirt network id, keyed by plane name -- for wiring into a future dc-nodes module's network_interface blocks (not yet authored; see opentofu/README.md)."
  value       = { for k, v in libvirt_network.plane : k => v.id }
}

output "network_names" {
  description = "libvirt network name, keyed by plane name."
  value       = { for k, v in libvirt_network.plane : k => v.name }
}