Initial commit - realms platform
This commit is contained in:
parent
c590ab6d18
commit
c717c3751c
234 changed files with 74103 additions and 15231 deletions
33
terraform/modules/app_server/outputs.tf
Normal file
33
terraform/modules/app_server/outputs.tf
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue