You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/frontdoor/create-front-door-cli.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,17 +56,19 @@ Run [az appservice plan create](/cli/azure/appservice/plan#az-appservice-plan-cr
56
56
```azurecli-interactive
57
57
az appservice plan create \
58
58
--name myAppServicePlanCentralUS \
59
-
--resource-group myRGFD
59
+
--resource-group myRGFD \
60
+
--location centralus
60
61
```
61
62
```azurecli-interactive
62
63
az appservice plan create \
63
64
--name myAppServicePlanEastUS \
64
-
--resource-group myRGFD
65
+
--resource-group myRGFD \
66
+
--location eastus
65
67
```
66
68
67
69
### Create web apps
68
70
69
-
Run [az webapp create](/cli/azure/webapp#az-webapp-create&preserve-view=true) to create a web app in each of the app service plans in the previous step. Web app names have to be globally unique.
71
+
Run [az webapp create](/cli/azure/webapp#az-webapp-create) to create a web app in each of the app service plans in the previous step. Web app names have to be globally unique.
0 commit comments