Set environment variables programmatically
I want to set up a Doppler webhook which updates secrets in Convex. I know of two ways to update secrets: through the dashboard, and through the CLI.
CLI seems like the easiest route, but I'm not exactly sure how to do this arbitrarily:
And I figure going down this route will run into other issues, since I imagine the CLI wasn't built to do this.
Accomplishing this through the dashboard is possible but extremely cursed, and I would prefer not to pull out puppeteer/playwright for this :ultra_joy:
Tentatively, I'm thinking a GitHub action triggered by a workflow might work, which would have the source directory and the surrounding dev environment, but that feels like a lot of orchestration.
Is there any way to accomplish this right now?
Doppler | Centralized Cloud-Based Secrets Management Platform
Doppler redefines how engineering teams handle secrets management. Experience enhanced security, agility, and automation with our cloud platform. Start your free trial.
4 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
I figured there was something I was missing, but this might actually be a feature request instead 😅
Heya, as you discovered, there's no way to programmatically update your environment variables right now. The dashboard and CLI are powered by an API under the hood, but we haven't externalized that. We're thinking about how we'll do that in the future for some of these "deployment management" use cases
Removing the requirement that convex be run in the same directory as a package.json when
CONVEX_DEPLOY_KEY
is set might be reasonable here, at least for some metadata commands like this — but that doesn't help much with your webhook case.
Agree that someday an API for this would be nice.