Files
cc-ci-orchestrator/terraform/outputs.tf
autonomic-bot 0103f369ad terraform+nix: Hetzner orchestrator server (cpx11, nixos-infect, cc-ci-orchestrator-hetzner flake host)
Adds terraform/ to provision a Hetzner cpx11 (2 vCPU / 2 GB dedicated AMD / 40 GB NVMe)
for the loops runtime, and a flake + NixOS host config to converge it — replacing the slow
b1 Incus VM. Mirrors the cc-ci server terraform (same nixos-infect pin, same pattern).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 02:11:30 +00:00

20 lines
606 B
HCL

output "server_ipv4" {
description = "Public IPv4 address of the cc-ci-orchestrator Hetzner server"
value = hcloud_server.cc_ci_orch.ipv4_address
}
output "server_id" {
description = "Hetzner internal server ID"
value = hcloud_server.cc_ci_orch.id
}
output "ssh_connect" {
description = "SSH command to connect as root (after nixos-infect)"
value = "ssh root@${hcloud_server.cc_ci_orch.ipv4_address}"
}
output "nixos_infect_log" {
description = "Check infect progress"
value = "ssh root@${hcloud_server.cc_ci_orch.ipv4_address} 'cat /var/log/nixos-infect.log'"
}