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

10 lines
214 B
Terraform
Raw Normal View History

2022-05-23 11:37:13 +00:00
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
}