Sanitized single-commit public mirror of recipe-maintainer. - Removed test-ssh/.testenv (live creds); added test-ssh/.testenv.example placeholders. - Removed plans/ and planned-updates/ (deployment-planning docs) so no client/ deployment domains appear in the public repo. - All other secret stores were already gitignored. - docs.coopcloud.tech retained as a submodule (public upstream).
21 lines
538 B
HCL
21 lines
538 B
HCL
output "droplet_ip" {
|
|
description = "Droplet's ephemeral IPv4 (use reserved_ip for DNS)"
|
|
value = digitalocean_droplet.test.ipv4_address
|
|
}
|
|
|
|
output "reserved_ip" {
|
|
description = "Static reserved IP — point t1cc.commoninternet.net DNS here"
|
|
value = var.reserved_ip
|
|
}
|
|
|
|
output "domain" {
|
|
description = "Base domain for test instances"
|
|
value = var.domain
|
|
}
|
|
|
|
output "ssh_command" {
|
|
description = "SSH command to connect to the droplet"
|
|
value = "ssh -i ${var.ssh_private_key_path} root@${var.domain}"
|
|
}
|
|
|