Files
Agent-n8n/n8n-n8n-1.109.2/packages/@n8n/benchmark/infra/output.tf
2025-09-08 04:48:28 +08:00

17 lines
267 B
HCL
Executable File

output "vm_name" {
value = module.test_vm.vm_name
}
output "ip" {
value = module.test_vm.ip
}
output "ssh_username" {
value = module.test_vm.ssh_username
}
output "ssh_private_key" {
value = tls_private_key.ssh_key.private_key_pem
sensitive = true
}