-Inputs and outputs (including exceptions) to and from Durable Functions APIs are [durably persisted](./durable-functions-serialization-and-persistence.md) in your [storage provider of choice](./durable-functions-storage-providers.md). If those inpusts, outputs, or exceptions contain sensitive data (such as secrets, connection strings, personally identifiable information, etc.) then anyone with read access your storage provider's resources would be able to obtain them. To safely deal with sensitive data, we recommend users that data _from within activity functions_ from either Azure Key Vault or environment variables, and to never communicate that data to orchestrators or entities. That should help prevent this data from leaking into your storage resources.
0 commit comments