1
0
Fork 0

output IPs

This commit is contained in:
chris 2022-05-23 13:37:13 +02:00
parent 34f5d12de4
commit b2a0b7bf84
1 changed files with 9 additions and 0 deletions

9
single-host/output.tf Normal file
View File

@ -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
}