Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 636 Bytes

application-secrets.md

File metadata and controls

5 lines (4 loc) · 636 Bytes

application secrets

  • stored in memory - most secure... in a distributed compute environment you need per worker memory (to avoid fetching the secret on every task) or the value needs to be serialised and passed with the task, which is a problem if the framework persists task outputs, like prefect does, (although it has a Secret Tasks with a special SecretResult handler which just rerun the task instead of persisting)
  • store in env var
  • persist to disk - harder to find, but persist beyond application if not running in container