initial template

This commit is contained in:
CC
2026-05-20 22:59:27 +01:00
commit b45851e888
8 changed files with 152 additions and 0 deletions

11
terraform/output.tf Normal file
View File

@@ -0,0 +1,11 @@
output "vm_name" {
value = var.vm_name
}
output "vm_ipv4_address" {
value = module.vm.vm_ipv4_address
}
output "vm_tags" {
value = local.all_tags
}