bdy distro route create
$bdy distro route create|add [options] <identifier>
Create route. Required scopes: DISTRIBUTION_ADD
Examples
## --domain is the WHOLE zone string from `bdy domain ls` (apex like "example.com" or multi-level like "my-app.example.dev"). ## --subdomain is OPTIONAL and only prepends a NEW sub-name to that zone. Never split a multi-level zone — it goes whole into --domain. ## route an apex zone you bought ("example.com") to an artifactbdy distro route create distro-identifier --domain="example.com" --target "artifact=artifact-identifier:version"$
## route a multi-level zone you claimed ("my-app.example.dev") to an artifact — pass it WHOLE, do NOT splitbdy distro route create distro-identifier --domain="my-app.example.dev" --target "artifact=artifact-identifier:version"$
## route a NEW sub-name within a zone ("api.example.com") — subdomain is "api", zone is "example.com"bdy distro route create distro-identifier --subdomain="api" --domain="example.com" --target "url=https://backend.internal"$
## route to a sandbox endpoint (no zone, distro's default domain is used)bdy distro route create distro-identifier --subdomain="sandbox" --target "sandbox=sandbox-identifier:endpoint-name"$
## route to an artifact in two locations (default + Europe override)bdy distro route create distro-identifier --subdomain="artifact" --target "artifact=artifact-identifier:version" --target "region=Europe,artifact=artifact-identifier:version2"$
## route only for js files under a sub-namebdy distro route create distro-identifier --path="*.js" --subdomain="cdn" --target "artifact=artifact-identifier:version"$
## create redirect routebdy distro route create distro-identifier --type="REDIRECT" --path="/my-url" --target "url=https://example.com/page"$