Hi all,
I’m running three services using a render.yaml blueprint file. I have an Postgres DB, a Python API, and a Vue frontend (static site).
Is it possible to reference the API endpoint as an environment variable in the blueprint file? Something like https://my-api.onrender.com.
I’ve tried the following:
envVars:
fromService:
type: web
name: my-api
property: host
But this doesn’t give the URL I need, just the name of the service. Is there a full list of all possible environment variables available anywhere? The specs in Blueprint Specification | Render seem incomplete.
Thanks for any help!