Skip to content

Commit fce5767

Browse files
committed
Acrolynx updates
1 parent 9c04856 commit fce5767

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

articles/event-grid/blob-event-quickstart-template.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
2626

2727
### Create a message endpoint
2828

29-
Before subscribing to the events for the Blob storage, let's create the endpoint for the event message. Typically, the endpoint takes actions based on the event data. To simplify this quickstart, you deploy a [pre-built web app](https://github.com/Azure-Samples/azure-event-grid-viewer) that displays the event messages. The deployed solution includes an App Service plan, an App Service web app, and source code from GitHub.
29+
Before subscribing to the events for the Blob storage, let's create the endpoint for the event message. Typically, the endpoint takes actions based on the event data. To simplify this quickstart, you deploy a [prebuilt web app](https://github.com/Azure-Samples/azure-event-grid-viewer) that displays the event messages. The deployed solution includes an App Service plan, an App Service web app, and source code from GitHub.
3030

3131
1. Select **Deploy to Azure** to deploy the solution to your subscription. In the Azure portal, provide values for the parameters.
3232

3333
[Deploy to Azure](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fazure-event-grid-viewer%2Fmaster%2Fazuredeploy.json)
34-
1. The deployment may take a few minutes to complete. After the deployment has succeeded, view your web app to make sure it's running. In a web browser, navigate to:
34+
1. The deployment can take a few minutes to complete. After the deployment succeeds, view your web app to make sure it's running. In a web browser, navigate to:
3535
`https://<your-site-name>.azurewebsites.net`
3636

37-
1. You see the site but no events have been posted to it yet.
37+
1. You see the site but no events are posted to it yet.
3838

3939
![View new site](./media/blob-event-quickstart-portal/view-site.png)
4040

@@ -72,7 +72,7 @@ View your web app again, and notice that a subscription validation event has bee
7272

7373
Now, let's trigger an event to see how Event Grid distributes the message to your endpoint.
7474

75-
You trigger an event for the Blob storage by uploading a file. The file doesn't need any specific content. The articles assumes you have a file named testfile.txt, but you can use any file.
75+
You trigger an event for the Blob storage by uploading a file. The file doesn't need any specific content. The article assumes you have a file named testfile.txt, but you can use any file.
7676

7777
When you upload the file to the Azure Blob storage, Event Grid sends a message to the endpoint you configured when subscribing. The message is in the JSON format and it contains an array with one or more events. In the following example, the JSON message contains an array with one event. View your web app and notice that a blob created event was received.
7878

@@ -88,5 +88,5 @@ For more information about Azure Resource Manager templates, see the following a
8888

8989
* [Azure Resource Manager documentation](../azure-resource-manager/index.yml)
9090
* [Define resources in Azure Resource Manager templates](/azure/templates/)
91-
* [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/)
91+
* [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/)
9292
* [Azure Event Grid templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Eventgrid).

articles/event-grid/custom-event-quickstart-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ New-AzResourceGroup -Name gridResourceGroup -Location westus2
3939

4040
## Create a custom topic
4141

42-
An Event Grid topic provides a user-defined endpoint that you post your events to. The following example creates the custom topic in your resource group. Replace `<your-topic-name>` with a unique name for your topic. The topic name must be unique because it's part of the DNS entry. Additionally, it must be between 3-50 characters and contain only values a-z, A-Z, 0-9, and "-"
42+
An Event Grid topic provides a user-defined endpoint that you post your events to. The following example creates the custom topic in your resource group. Replace `<your-topic-name>` with a unique name for your topic. The topic name must be unique because it's part of the Domain Name System (DNS) entry. Additionally, it must be between 3-50 characters and contain only values a-z, A-Z, 0-9, and "-"
4343

4444
```powershell-interactive
4545
$topicname="<your-topic-name>"

articles/event-grid/custom-event-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Quickstart: Send custom events with Event Grid and Azure CLI'
3-
description: 'Quickstart Use Azure Event Grid and Azure CLI to publish a custom topic, and subscribe to events for that topic. The events are handled by a web application.'
3+
description: 'Quickstart uses Azure Event Grid and Azure CLI to publish a custom topic, and subscribe to events for that topic. The events are handled by a web application.'
44
ms.date: 01/05/2024
55
ms.topic: quickstart
66
ms.custom: devx-track-azurecli, mode-api, build-2024

articles/event-grid/custom-event-to-hybrid-connection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ az group create --name gridResourceGroup --location westus2
3737

3838
## Create a custom topic
3939

40-
An Event Grid topic provides a user-defined endpoint that you post your events to. The following example creates the custom topic in your resource group. Replace `<topic_name>` with a unique name for your custom topic. The Event Grid topic name must be unique because it's represented by a DNS entry.
40+
An Event Grid topic provides a user-defined endpoint that you post your events to. The following example creates the custom topic in your resource group. Replace `<topic_name>` with a unique name for your custom topic. The Event Grid topic name must be unique because it's represented by a Domain Name System (DNS) entry.
4141

4242
```azurecli-interactive
4343
az eventgrid topic create --name <topic_name> -l westus2 -g gridResourceGroup

0 commit comments

Comments
 (0)