I am having a problem deploying an app using a custom domain. I am using Terraform to deploy the app and all of the pieces deploy correctly apart from the setting of the Public URL for the front end reverse proxy.
The container deploys correctly and passes health checks but the external mapping to the Public URL shows on the service detail screen as my-custom-domain.comundefined and of course the service is not then externally available. I don’t know where that undefined string is coming from.
The domain is shown as active (I have a wildcard entry on the DNS so I am not updating the DNS records with Terraform) and attached to the correct Koyeb app.
However if I got to the service / Settings / Exposed Ports and untick and then re-tick the Public option then the Public URL fixes itself.
Is this just a timing issue? I have waited for 10 minutes and nothing changed until I flipped that public slider on an off.
I have now had a chance to make a minimal example that demonstrates this issue. The following config starts the service correctly but does not link it with the domain. It remains showing the URL as “echo.demo.internal:80” - but if I turn the public setting off/on and then save the settings it correctly links with the domain.
I have changed the domain name in the below - other than that no changes.
terraform {
required_providers {
koyeb = {
source = "koyeb/koyeb"
version = "0.1.11"
}
}
}
resource "koyeb_app" "app" {
name = "demo"
}
resource "koyeb_domain" "my-domain" {
name = "demo.my-domain.com"
app_name = koyeb_app.app.name
}
resource "koyeb_service" "echo" {
app_name = koyeb_app.app.name
definition {
name = "echo"
instance_types {
type = "micro"
}
ports {
port = 80
protocol = "http"
}
scalings {
min = 1
max = 1
}
regions = ["fra"]
docker {
image = "ealen/echo-server"
}
}
depends_on = [
koyeb_domain.my-domain
]
}