Skip to content

Commit 5e554c8

Browse files
authored
Merge pull request #199818 from vicancy/lianwei/d1
Adding iot tutorial
2 parents 3cd1744 + 3d7a76b commit 5e554c8

File tree

5 files changed

+493
-7
lines changed

5 files changed

+493
-7
lines changed

articles/azure-web-pubsub/includes/cli-awps-creation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ ms.date: 08/06/2021
66
ms.author: lianwei
77
---
88

9-
Use the Azure CLI [az webpubsub create](/cli/azure/webpubsub#az-webpubsub-create) command to create a Web PubSub in the resource group from the previous step, providing the following information:
9+
Run [az extension add](/cli/azure/extension#az-extension-add) to install or upgrade the *webpubsub* extension to the current version.
1010

11-
- Resource name: A string of 3 to 24 characters that can contain only numbers (0-9), letters (a-z, A-Z), and hyphens (-)
11+
```azurecli-interactive
12+
az extension add --upgrade --name webpubsub
13+
```
14+
15+
Use the Azure CLI [az webpubsub create](/cli/azure/webpubsub#az-webpubsub-create) command to create a Web PubSub in the resource group you've created. The following command creates a _Free_ Web PubSub resource under resource group _myResourceGroup_ in _EastUS_:
1216

1317
> [!Important]
1418
> Each Web PubSub resource must have a unique name. Replace <your-unique-resource-name> with the name of your Web PubSub in the following examples.
1519
16-
- Resource group name: **myResourceGroup**.
17-
- The location: **EastUS**.
18-
- Sku: **Free_F1**
19-
2020
```azurecli-interactive
2121
az webpubsub create --name "<your-unique-resource-name>" --resource-group "myResourceGroup" --location "EastUS" --sku Free_F1
2222
```

articles/azure-web-pubsub/includes/cli-delete-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 08/06/2021
66
ms.author: lianwei
77
---
88

9-
Other quickstarts and tutorials in this collection build upon this quickstart. If you plan to continue on to work with subsequent quickstarts and tutorials, you may wish to leave these resources in place.
9+
If you plan to continue on to work with subsequent quickstarts and tutorials, you may wish to leave these resources in place.
1010

1111
When no longer needed, you can use the Azure CLI [az group delete](/cli/azure/group) command to remove the resource group and all related resources:
1212

413 KB
Loading

articles/azure-web-pubsub/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
href: tutorial-serverless-notification.md
3838
- name: Build a real-time chat app with client authentication
3939
href: quickstart-serverless.md
40+
- name: Visualize IoT data with Azure Function
41+
href: tutorial-serverless-iot.md
4042
- name: Publish and subscribe messages
4143
href: tutorial-pub-sub-messages.md
4244
- name: Build a chat app

0 commit comments

Comments
 (0)