This commit is contained in:
Josh 2026-01-09 00:22:05 +02:00
commit 52843aa9e7
13 changed files with 920 additions and 0 deletions

20
outputs.tf Normal file
View file

@ -0,0 +1,20 @@
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
}