All checks were successful
🔧 Pipeline / 🪨 Terraform (push) Successful in 7s
## 🔍 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>
19 lines
489 B
HCL
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
|
|
} |