Skip to content

Commit eb7dbd8

Browse files
committed
add acrolinx suggestions
1 parent e275c44 commit eb7dbd8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/azure-web-pubsub/howto-secure-shared-private-endpoints-key-vault.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Azure Web PubSub Service can access your Key Vault in a private network through
1515

1616
:::image type="content" alt-text="Diagram showing architecture of shared private endpoint." source="media\howto-secure-shared-private-endpoints-key-vault\shared-private-endpoint-overview.png" :::
1717

18-
Private endpoints of secured resources created through Azure Web PubSub Service APIs are referred to as *shared private-link resources*. This is because you're "sharing" access to a resource, such as an Azure Key Vault, that has been integrated with the [Azure Private Link service](../private-link/private-link-overview.md). These private endpoints are created inside the Azure Web PubSub Service execution environment and aren't directly visible to you.
18+
Private endpoints of secured resources created through Azure Web PubSub Service APIs are referred to as *shared private-link resources*. This is because you're "sharing" access to a resource, such as an Azure Key Vault, that has been integrated with the [Azure Private Link service](../private-link/private-link-overview.md). These private endpoints are created inside the Azure Web PubSub Service execution environment and aren't directly visible to you.
1919

2020
> [!NOTE]
2121
> The examples in this article use the following resource IDs:
@@ -44,13 +44,13 @@ Private endpoints of secured resources created through Azure Web PubSub Service
4444
:::image type="content" alt-text="Screenshot of shared private endpoints management." source="media\howto-secure-shared-private-endpoints-key-vault\portal-shared-private-endpoints-management.png" lightbox="media\howto-secure-shared-private-endpoints-key-vault\portal-shared-private-endpoints-management.png" :::
4545

4646
1. Enter a **Name** for the shared private endpoint.
47-
1. Enter your key vault resource by choosing **Select from your resources** and selecting your resource from the lists, or by choosing **Specify resource ID** and entering you key vault resource ID.
47+
1. Enter your key vault resource by choosing **Select from your resources** and selecting your resource from the lists, or by choosing **Specify resource ID** and entering your key vault resource ID.
4848
1. Enter *please approve* for the **Request message**.
4949
1. Select **Add**.
5050

5151
:::image type="content" alt-text="Screenshot of adding a shared private endpoint." source="media\howto-secure-shared-private-endpoints-key-vault\portal-shared-private-endpoints-add.png" :::
5252

53-
The shared private endpoint resource provisioning state will be **Succeeded**. The connection state is **Pending** approval at target resource side.
53+
The shared private endpoint resource provisioning state is **Succeeded**. The connection state is **Pending** approval at target resource side.
5454

5555
:::image type="content" alt-text="Screenshot of an added shared private endpoint." source="media\howto-secure-shared-private-endpoints-key-vault\portal-shared-private-endpoints-added.png" lightbox="media\howto-secure-shared-private-endpoints-key-vault\portal-shared-private-endpoints-added.png" :::
5656

@@ -75,7 +75,7 @@ The contents of the *create-pe.json* file, which represents the request body to
7575
}
7676
```
7777

78-
The process of creating an outbound private endpoint is a long-running (asynchronous) operation. As in all asynchronous Azure operations, the `PUT` call returns an `Azure-AsyncOperation` header value that looks like the following:
78+
The process of creating an outbound private endpoint is a long-running (asynchronous) operation. As in all asynchronous Azure operations, the `PUT` call returns an `Azure-AsyncOperation` header value that looks like the following output:
7979

8080
```output
8181
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso/providers/Microsoft.SignalRService/webpubsub/contoso-webpubsub/operationStatuses/c0786383-8d5f-4554-8d17-f16fcf482fb2?api-version=2022-08-01-preview"
@@ -162,7 +162,7 @@ It takes a few minutes for the approval to be propagated to Azure Web PubSub Ser
162162
az rest --method get --uri https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso/providers/Microsoft.SignalRService/webpubsub/contoso-webpubsub/sharedPrivateLinkResources/func-pe?api-version=2022-08-01-preview
163163
```
164164

165-
This would return a JSON, where the connection state would show up as "status" under the "properties" section.
165+
This command would return a JSON, where the connection state would show up as "status" under the "properties" section.
166166

167167
```json
168168
{
@@ -178,11 +178,11 @@ This would return a JSON, where the connection state would show up as "status" u
178178

179179
```
180180

181-
When the "Provisioning State" (`properties.provisioningState`) of the resource is `Succeeded` and "Connection State" (`properties.status`) is `Approved`, the shared private link resource is functional and Azure Web PubSub Service can communicate over the private endpoint.
181+
When the "Provisioning State" (`properties.provisioningState`) of the resource is `Succeeded` and "Connection State" (`properties.status`) is `Approved`, the shared private link resource is functional, and Azure Web PubSub Service can communicate over the private endpoint.
182182

183183
-----
184184

185-
Now you can configure features like a custom domain as usual. You don't have to use a special domain for Key Vault. DNS resolution is automatically handled by Azure Web PubSub Service.
185+
Now you can configure features like a custom domain as usual. You don't have to use a special domain for Key Vault. The Azure Web PubSub Service automatically handles DNS resolution.
186186

187187
## Next steps
188188

articles/azure-web-pubsub/howto-secure-shared-private-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ You use the following API call with the [Azure CLI](/cli/azure/) to create a sha
7171
az rest --method put --uri https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso/providers/Microsoft.SignalRService/webPubSub/contoso-webpubsub/sharedPrivateLinkResources/func-pe?api-version=2021-06-01-preview --body @create-pe.json --debug
7272
```
7373

74-
The *create-pe.json* file contains the request body to the API. It will be similar to the following example:
74+
The *create-pe.json* file contains the request body to the API. It is similar to the following example:
7575

7676
```json
7777
{

0 commit comments

Comments
 (0)