From b2a0b7bf8434e3663961ed2f6d6a69edf937a8ee Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 23 May 2022 13:37:13 +0200 Subject: [PATCH] output IPs --- single-host/output.tf | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 single-host/output.tf 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 +}