https://prefect.io logo
s

Samay Kapadia

01/18/2022, 3:20 PM
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

Kevin Kho

01/18/2022, 3:25 PM
The full list can be found in the config.toml . Anything specific you are looking for?
s

Samay Kapadia

01/18/2022, 3:26 PM
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

Kevin Kho

01/18/2022, 3:39 PM
Ah ok you got it yep
4 Views