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,6 @@
resource "libvirt_cloudinit_disk" "commoninit" {
name = var.cloudinit_filename
user_data = templatefile("${path.module}/../environments/cloud_init.yaml", {})
pool = var.pool_name
depends_on = [libvirt_pool.tf_tmp_storage]
}