Skip to content

Commit f986321

Browse files
authored
rewording
1 parent 79324c4 commit f986321

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/durable/durable-functions-best-practice-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ A single worker instance can execute multiple work items concurrently to increas
7575

7676
As with anything performance related, the ideal concurrency settings and architechture of your app ultimately depends on your application's workload. Therefore, it's recommended that users to invest in a performance testing harness that simulates their expected workload and to use it to run performance and reliability experiments for their app.
7777

78-
### Avoid communicating secrets through inputs, outputs, or exceptions
78+
### Avoid passing secrets through inputs, outputs, or exceptions
7979

80-
Inputs and outputs (including exceptions) to and from Durable Functions APIs are durably stored in your [storage provider of choice](./durable-functions-storage-providers.md). Depending on how you've configured permissions to those storage resources, that could mean anyone with read access to those storage resources may be able to obtain those secrets. Therefore, if you need to obtain some secret, we recommend you materialize through something like the KeyVault SDK instead of directly passing through the Durable Functions APIs.
80+
Inputs and outputs (including exceptions) to and from Durable Functions APIs are durably stored in your [storage provider of choice](./durable-functions-storage-providers.md). Depending on how you've configured permissions to those storage resources, that could mean anyone with read access to those storage resources would be able to obtain those secrets. Therefore, if you need to use a secret in your application's logic, we recommend you materialize it through something like the KeyVault SDK instead of communicating it directly through the Durable Functions APIs.
8181

8282
> [!NOTE]
83-
> We also recommend against logging data containing secrets as anyone with read access to your logs, like in Application Insights, would be able to obtain that data.
83+
> We also recommend against logging data containing secrets as anyone with read access to your logs (for example in Application Insights), would be able to obtain those secrets.
8484
8585
## Diagnostic tools
8686

0 commit comments

Comments
 (0)