Initial infra attempt

This commit is contained in:
Logan
2026-06-21 13:37:03 -04:00
parent f0a0ea508a
commit a1c91c5ed3
7 changed files with 339 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
output "server_ip" {
value = google_compute_address.drb.address
description = "Static external IP of the DRB server VM"
}
output "app_url" {
value = "https://app.${var.domain}"
}
output "api_url" {
value = "https://api.${var.domain}"
}