Is there a way to specify specific regions for a multi region deployment in a `fly.toml` file?

I just started a project with a fly.toml file that looks like this.

app = "..."
primary_region = "sin"

[build]

[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ["app"]

I’d like to add a region each in Europe and US and was unable to figure out if it’s possible to specify them in the config file. The primary_region seems to want a specific region and doesn’t accept a list. Is there some relevant documentation that I missed? I found that there’s a way to imperatively do this with fly scale count --region but I was hoping to be able to do this declaratively in a config file.

Thoughts?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.