Skip to content

Commit 89defd4

Browse files
authored
Correct typo in web-app-routing.md
Command: `az keyvault certificate show --vault-name <KeyVaultName> -n <KeyVaultCertificateName> ---query "id" --output tsv` is wrong with an extra hyphen. Will cause error: `unrecognized arguments: ---query id` .
1 parent 351360d commit 89defd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/aks/web-app-routing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ spec:
415415
The Web Application Routing add-on creates an Ingress class on the cluster called `webapprouting.kubernetes.azure.com `. When you create an ingress object with this class, this will activate the add-on. To obtain the certificate URI to use in the Ingress from Azure Key Vault, run the following command.
416416

417417
```azurecli-interactive
418-
az keyvault certificate show --vault-name <KeyVaultName> -n <KeyVaultCertificateName> ---query "id" --output tsv
418+
az keyvault certificate show --vault-name <KeyVaultName> -n <KeyVaultCertificateName> --query "id" --output tsv
419419
```
420420

421421
Create a file named **ingress.yaml** and copy in the following YAML.

0 commit comments

Comments
 (0)