Hey all. Where can I find a prefect configuration ...
# ask-community
s
Hey all. Where can I find a prefect configuration reference page? Googling “prefect configuration reference” takes me to the core concepts page, which doesn’t actually tell me what configurations I can actually change
👀 1
k
The full list can be found in the config.toml . Anything specific you are looking for?
s
Just wanted to use cloud secrets from my local setup
Thanks Kevin!
I’m trying to use Azure storage for storing my flows, and the connection string needs to be stored as a secret.
Although when I run
Copy code
PREFECT__USE_LOCAL_SECRETS=false poetry run python main.py
I’m still getting
Copy code
ValueError: Local Secret "prod-prefect-flows" was not found.
🤔
Ah okay, I just changed it to
PREFECT__*CLOUD*__USE_LOCAL_SECRETS=false
and it worked
k
Ah ok you got it yep