Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ output "domain" {
value = trimprefix((var.domain != null ? "https://${var.domain}" : scalingo_app.app.url), "https://")
}

output "base_url" {
description = "Default URL of the Scalingo application (without canonical domain override)."
value = scalingo_app.app.base_url
}

output "origin_domain" {
description = "The FQDN of the Scalingo application (`<your_app_name>.<region>.scalingo.io`). Same as the `domain` output if you have not set a canonical domain."
value = "${scalingo_app.app.name}.${local.current_region}.scalingo.io"
Expand Down
Loading