Skip to content

Commit 1cc6bd3

Browse files
add connection string disclaimer
1 parent 7239e5e commit 1cc6bd3

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

articles/azure-web-pubsub/howto-integrate-app-service.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.date: 05/17/2023
1212

1313
A new class of applications is reimagining what modern work could be. While [Microsoft Word](https://www.microsoft.com/microsoft-365/word) brings editors together, [Figma](https://www.figma.com) gathers up designers on the same creative endeavor. This class of applications builds on a user experience that makes us feel connected with our remote collaborators. From a technical point of view, user's activities need to be synchronized across users' screens at a low latency.
1414

15+
> [!NOTE]
16+
> Raw connection strings appear in this article for demonstration purposes only. When you deploy your application, [secure your connection with `WebPubSubServiceClient`](./howto-create-serviceclient-with-net-and-azure-identity) to maintain a secure connection.
17+
1518
## Overview
1619
In this how-to guide, we take a cloud-native approach and use Azure services to build a real-time collaborative whiteboard and we deploy the project as a Web App to Azure App Service. The whiteboard app is accessible in the browser and allows anyone can draw on the same canvas.
1720

@@ -81,6 +84,9 @@ In order to follow the step-by-step guide, you need
8184
```
8285
8386
1. Show and store the value of `primaryConnectionString` somewhere for later use.
87+
88+
Raw connection strings appear in this article for demonstration purposes only. When you deploy your application, [secure your connection with `WebPubSubServiceClient`](./howto-create-serviceclient-with-net-and-azure-identity) to maintain a secure connection.
89+
8490
```azurecli-interactive
8591
az webpubsub key show \
8692
--name "whiteboard-app" \

articles/azure-web-pubsub/quickstart-serverless.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ In this tutorial, you learn how to:
2323
> - Configure Azure Authentication
2424
> - Configure Web PubSub Event Handler to route events and messages to the application
2525
26+
> [!NOTE]
27+
> Raw connection strings appear in this article for demonstration purposes only. When you deploy your application, [secure your connection with `WebPubSubServiceClient`](./howto-create-serviceclient-with-net-and-azure-identity) to maintain a secure connection.
28+
2629
## Prerequisites
2730

2831
# [JavaScript Model v4](#tab/javascript-v4)
@@ -789,6 +792,8 @@ Use the following commands to create these items.
789792
790793
1. Configure the `WebPubSubConnectionString` for the function app:
791794
795+
Raw connection strings appear in this article for demonstration purposes only. When you deploy your application, [secure your connection with `WebPubSubServiceClient`](./howto-create-serviceclient-with-net-and-azure-identity) to maintain a secure connection.
796+
792797
First, find your Web PubSub resource from **Azure Portal** and copy out the connection string under **Keys**. Then, navigate to Function App settings in **Azure Portal** -> **Settings** -> **Configuration**. And add a new item under **Application settings**, with name equals `WebPubSubConnectionString` and value is your Web PubSub resource connection string.
793798
794799
## Configure the Web PubSub service `Event Handler`

0 commit comments

Comments
 (0)