9 lines
214 B
HCL
9 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
|
|
}
|