Skip to content

Commit 4a7ae18

Browse files
authored
Add more details to keyvault reference syntax
Fixes https://github.com/MicrosoftDocs/azure-docs/issues/97219
1 parent 5348ef4 commit 4a7ae18

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

articles/azure-signalr/concept-upstream.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,16 @@ 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]
6271
> 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.

0 commit comments

Comments
 (0)