# 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 }