diff --git a/single-host/output.tf b/single-host/output.tf new file mode 100644 index 0000000..f180ae8 --- /dev/null +++ b/single-host/output.tf @@ -0,0 +1,9 @@ +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 +}