add another output, but does not seem to return anything for the moment

This commit is contained in:
Lukas Greve
2025-09-10 20:54:10 +02:00
parent 727903412f
commit c68ca02018

View File

@@ -38,3 +38,7 @@ output "volume_ids" {
output "instance_count" { output "instance_count" {
value = var.instance_count value = var.instance_count
} }
output "cloud_init_rendered" {
value = templatefile("${path.module}/cloud_init.yaml", {ssh_key = var.ssh_key})
}