Files
server/infra/modules/prod/outputs.tf
T

13 lines
257 B
Terraform

output "ipv4" {
value = hcloud_server.this.ipv4_address
}
output "private_ipv4" {
value = var.private_ip
}
output "data_dir" {
description = "Deterministic host path of the auto-mounted volume - see local.data_dir."
value = local.data_dir
}