Skip to content

Commit e76241e

Browse files
Merge pull request #124163 from erwinkramer/main
Key Vault references should not contain a trailing slash
2 parents 3faa77e + c720d3e commit e76241e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/app-service/app-service-key-vault-references.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ A key vault reference is of the form `@Microsoft.KeyVault({referenceString})`, w
102102
> [!div class="mx-tdBreakAll"]
103103
> | Reference string | Description |
104104
> |-----------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
105-
> | SecretUri=_secretUri_ | The **SecretUri** should be the full data-plane URI of a secret in the vault, optionally including a version, e.g., `https://myvault.vault.azure.net/secrets/mysecret/` or `https://myvault.vault.azure.net/secrets/mysecret/ec96f02080254f109c51a1f14cdb1931` |
105+
> | SecretUri=_secretUri_ | The **SecretUri** should be the full data-plane URI of a secret in the vault, for example `https://myvault.vault.azure.net/secrets/mysecret`. Optionally, include a version, such as `https://myvault.vault.azure.net/secrets/mysecret/ec96f02080254f109c51a1f14cdb1931`. |
106106
> | VaultName=_vaultName_;SecretName=_secretName_;SecretVersion=_secretVersion_ | The **VaultName** is required and is the vault name. The **SecretName** is required and is the secret name. The **SecretVersion** is optional but if present indicates the version of the secret to use. |
107107
108-
For example, a complete reference would look like the following string:
108+
For example, a complete reference without a specific version would look like the following string:
109109
110110
```
111-
@Microsoft.KeyVault(SecretUri=https://myvault.vault.azure.net/secrets/mysecret/)
111+
@Microsoft.KeyVault(SecretUri=https://myvault.vault.azure.net/secrets/mysecret)
112112
```
113113
114114
Alternatively:

0 commit comments

Comments
 (0)