18 lines
425 B
HCL
18 lines
425 B
HCL
output "server_ip" {
|
|
description = "The public address of the server."
|
|
value = hcloud_server.gitea_server_instance.ipv4_address
|
|
sensitive = false
|
|
}
|
|
|
|
output "runner_ip" {
|
|
description = "The internal address of the CI runner."
|
|
value = local.runner_ip
|
|
sensitive = false
|
|
}
|
|
|
|
output "server_fqdn" {
|
|
description = "The public domain of the server."
|
|
value = "${local.subdomain}.${local.domain}"
|
|
sensitive = false
|
|
}
|