Secrets Store Secrets
Hi what is the right way to add secret store secrets when using a stateless setup (i.e. getRandom)? Since they are async I don't see how I can pass them in on container startup.
1 Reply
I'm using the following worker spec to pass requests through to my backend (fastapi in the container)
I'd like to pass in, say,
OPENAI_API_KEY secret from the secrets store. I assume I have to use env.OPENAPI_KEY.get() and somehow asynchronously set this ideally before container start so it can be passed in on startup. How do I do this>