https://prefect.io logo
f

Florian Guily

05/20/2022, 5:46 PM
New issue: When using
Secret.get()
it apparently only search for local secrets. The doc says i have to change
prefect.config.use_local_secrets
to false but i can't understand how... I suppose it is in the config.toml file but as the flow has to run on an eks cluster, how can i specify this for the cluster ?
k

Kevin Kho

05/20/2022, 5:47 PM
You can use the env var:
Copy code
PREFECT__CLOUD__USE_LOCAL_SECRETS: false
and set it in the RunConfig or have it inside the container used
🙏 1
f

Florian Guily

05/20/2022, 5:49 PM
ok thanks