boma/terraform/environments/production/outputs.tf
sjat 9a8181ef18 Add Terraform VM-provisioning skeleton
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-30 14:10:01 +02:00

9 lines
234 B
HCL

output "vms" {
description = "Map of hostname to IP and Ansible group — consumed by make tf-inventory"
value = {
for name, cfg in local.vms : name => {
ip = split("/", cfg.ip)[0]
group = cfg.group
}
}
}