API for env groups
complete
K
Kurt Wolf
Right now, there's (undocumented) portions of the API to list and detail an env group.
There's seemingly no API to update the variables, or create new ones.
I tried using the GraphQL API that Render.com uses, but it apparently uses a different token than what the Rest API uses, so that didn't work.
Can you add "update vars for env group" and "create env group" operations to the Rest API?
I'd like this because I'd like to manage both dev and prod environment variables using the OSS CLI tool: https://github.com/kurtbuilds/render
Log In
k
kate
complete
We've launched a big expansion to our REST API! Now, you can use the API for nearly everything you can do in the Dashboard. Docs are here: https://api-docs.render.com/reference/introduction
H
Humza Ahmed
All env group details are available by targeting the env-group id. Render may have not come around to documentating or possible unleft procedures in handling env-groups.You can do a successful by:
- https://api.render.com/v1/env-groups: get all env-groups
- https://api.render.com/v1/env-groups/{env_group_id}: target specific env_group_id
Been using more for fetching than for posting.
k
kate
in progress