Files
web/terraform/outputs.tf
Max ea7e38e12d
All checks were successful
🔧 Pipeline / 🪨 Terraform (push) Successful in 7s
I lost my data. (#18)
## 🔍 Motivation & Context

My data is lost.

## 🔖 Related Issue

None.

##  Changes

I accidentally overwrote my Gitea data.

Reviewed-on: https://code.maximhutz.com/Infrastructure/Codebase/pulls/18
Co-authored-by: Max <git@maximhutz.me>
Co-committed-by: Max <git@maximhutz.me>
2025-01-08 23:20:08 +00:00

19 lines
489 B
HCL

# The instance ID (`i-*****************`) of the reverse proxy.
output "public_instance_id" {
value = aws_instance.public.id
}
# The instance ID of the Gitea instance.
output "private_instance_id" {
value = aws_instance.private.id
}
# The instance ID of the Gitea runner.
output "runner_instance_id" {
value = aws_instance.runner.id
}
# The private IP (not accessible from internet) of the Gitea instnace.
output "private_instance_ip" {
value = aws_instance.private.private_ip
}