New issue: When using `Secret.get()` it apparently...
# ask-community
f
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
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
ok thanks