Initial commit - realms platform

This commit is contained in:
doomtube 2026-01-05 22:54:27 -05:00
parent c590ab6d18
commit c717c3751c
234 changed files with 74103 additions and 15231 deletions

View file

@ -0,0 +1,33 @@
# =============================================================================
# App Server Module Outputs
# =============================================================================
output "droplet_id" {
description = "ID of the app server droplet"
value = digitalocean_droplet.app.id
}
output "droplet_urn" {
description = "URN of the app server droplet"
value = digitalocean_droplet.app.urn
}
output "public_ip" {
description = "Public IPv4 address of the app server"
value = digitalocean_droplet.app.ipv4_address
}
output "private_ip" {
description = "Private IPv4 address of the app server (VPC)"
value = digitalocean_droplet.app.ipv4_address_private
}
output "ipv6_address" {
description = "IPv6 address of the app server"
value = digitalocean_droplet.app.ipv6_address
}
output "firewall_id" {
description = "ID of the app server firewall"
value = digitalocean_firewall.app.id
}