Skip to content

Commit 3fee4a7

Browse files
authored
Simplifications
1 parent 344d6a6 commit 3fee4a7

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

articles/aks/web-app-routing.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,10 @@ az keyvault create -g <RESOURCE GROUP NAME> -l <LOCATION> -n <KEYVAULT NAME>
6666

6767
### Import certificate to Azure Key Vault
6868

69-
Import the SSL certificate into Azure Key Vault then retrieve the certificate URI which you will use later to configure the Ingress.
69+
Import the SSL certificate into Azure Key Vault.
7070

71-
```azurecli
72-
# Import the certificate into Azure Key Vault
71+
```azurecli-interactive
7372
az keyvault certificate import --vault-name <KEYVAULT NAME> -n <KEYVAULT CERTIFICATE NAME> -f aks-ingress-tls.pfx
74-
75-
# Retrieve the certificate URI
76-
az keyvault certificate show --vault-name <KEYVAULT NAME> --name <KEYVAULT CERTIFICATE NAME> -o jsonc | jq .id
7773
```
7874

7975
### Create an Azure DNS zone (optional)
@@ -182,7 +178,7 @@ az aks get-credentials --resource-group myResourceGroup --name myAKSCluster
182178
```
183179
## Deploying an application that uses Web Application Routing
184180

185-
Web Application Routing uses annotations on Kubernetes Ingress objects to create the appropriate resources, create records Azure DNS (when configured), and retrieve the SSL certificates from Azure Key Vault.
181+
Web Application Routing uses annotations on Kubernetes Ingress objects to create the appropriate resources, create records on Azure DNS (when configured), and retrieve the SSL certificates from Azure Key Vault.
186182

187183
# [With Open Service Mesh (OSM)](#tab/with-osm)
188184

0 commit comments

Comments
 (0)