1
0
Fork 0
terraform-playground/single-host/output.tf

10 lines
214 B
HCL

output "test_ip" {
description = "Test VM IP"
value = hcloud_server.single-server1.ipv6_address
}
output "test_ipv4" {
description = "Test VM legacy IP"
value = hcloud_server.single-server1.ipv4_address
}