Skip to content

Commit 6aded2a

Browse files
Merge pull request #208659 from vicancy/patch-1
Add more details to keyvault reference syntax
2 parents 5997600 + 9f97e02 commit 6aded2a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

articles/azure-signalr/concept-upstream.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,19 @@ The URL of upstream is not encryption at rest. If you have any sensitive informa
5656

5757
2. Grant secret read permission for the managed identity in the Access policies in the Key Vault. See [Assign a Key Vault access policy using the Azure portal](../key-vault/general/assign-access-policy-portal.md)
5858

59-
3. Replace your sensitive text with the syntax `{@Microsoft.KeyVault(SecretUri=<secret-identity>)}` in the Upstream URL Pattern.
59+
3. Replace your sensitive text with the below syntax in the Upstream URL Pattern:
60+
```
61+
{@Microsoft.KeyVault(SecretUri=<secret-identity>)}
62+
```
63+
`<secret-identity>` is the full data-plane URI of a secret in Key Vault, optionally including a version, e.g., https://myvault.vault.azure.net/secrets/mysecret/ or https://myvault.vault.azure.net/secrets/mysecret/ec96f02080254f109c51a1f14cdb1931
64+
65+
For example, a complete reference would look like the following:
66+
```
67+
@Microsoft.KeyVault(SecretUri=https://myvault.vault.azure.net/secrets/mysecret/)
68+
```
6069

6170
> [!NOTE]
62-
> The secret content only rereads when you change the Upstream settings or change the managed identity. Make sure you have granted secret read permission to the managed identity before using the Key Vault secret reference.
71+
> The service rereads the secret content every 30 minutes or whenever the upstream settings or managed identity changes. Try updating the Upstream settings if you'd like an immediate update when the Key Vault content is changed.
6372
6473
### Rule settings
6574

0 commit comments

Comments
 (0)