shared modules to be used across deployments

This commit is contained in:
Lukas Greve
2025-09-04 11:30:46 +02:00
parent 96e8bd7588
commit ac81cb65ce
8 changed files with 207 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
output "pool_name" {
value = libvirt_pool.tf_tmp_storage.name
}
output "network_name" {
value = libvirt_network.tf_libvirt_tmp_network.name
}
output "network_addresses" {
value = libvirt_network.tf_libvirt_tmp_network.addresses
}
output "cloudinit_disk_id" {
value = libvirt_cloudinit_disk.commoninit.id
}
output "cloudinit_disk_name" {
value = libvirt_cloudinit_disk.commoninit.name
}