infra/outputs.tf
2026-01-09 00:22:05 +02:00

20 lines
397 B
HCL

output "prod_ip" {
value = hcloud_server.prod.ipv4_address
}
output "ops_ip" {
value = hcloud_server.ops.ipv4_address
}
output "urls" {
value = {
app = "https://${var.domain}"
staging = "https://staging.${var.domain}"
source = "https://source.${var.domain}"
ci = "https://ci.${var.domain}"
}
}
output "r2_bucket" {
value = cloudflare_r2_bucket.assets.name
}