Skip to content

Commit 0771f57

Browse files
authored
Merge pull request #49800 from tfitzmac/0823qs
changed sample URL
2 parents 560f528 + a5faf07 commit 0771f57

6 files changed

+16
-16
lines changed

articles/container-registry/container-registry-event-grid-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: jeconnoc
77

88
ms.service: container-registry
99
ms.topic: article
10-
ms.date: 08/17/2018
10+
ms.date: 08/23/2018
1111
ms.author: marsma
1212
# Customer intent: As a container registry owner, I want to send events to Event Grid
1313
# when container images are pushed to or deleted from my container registry so that
@@ -83,7 +83,7 @@ SITE_NAME=<your-site-name>
8383
8484
az group deployment create \
8585
--resource-group $RESOURCE_GROUP_NAME \
86-
--template-uri "https://raw.githubusercontent.com/dbarkol/azure-event-grid-viewer/master/azuredeploy.json" \
86+
--template-uri "https://raw.githubusercontent.com/Azure-Samples/azure-event-grid-viewer/master/azuredeploy.json" \
8787
--parameters siteName=$SITE_NAME hostingPlanName=$SITE_NAME-plan
8888
```
8989

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ When you're finished, you see that the event data has been sent to the web app.
3737

3838
## Create a message endpoint
3939

40-
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/dbarkol/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.
40+
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.
4141

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

44-
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fdbarkol%2Fazure-event-grid-viewer%2Fmaster%2Fazuredeploy.json" target="_blank"><img src="http://azuredeploy.net/deploybutton.png"/></a>
44+
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fazure-event-grid-viewer%2Fmaster%2Fazuredeploy.json" target="_blank"><img src="http://azuredeploy.net/deploybutton.png"/></a>
4545

4646
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:
4747
`https://<your-site-name>.azurewebsites.net`

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: event-grid
55
keywords:
66
author: tfitzmac
77
ms.author: tomfitz
8-
ms.date: 07/05/2018
8+
ms.date: 08/23/2018
99
ms.topic: quickstart
1010
ms.service: event-grid
1111
---
@@ -47,7 +47,7 @@ New-AzureRmEventGridTopic -ResourceGroupName gridResourceGroup -Location westus2
4747

4848
## Create a message endpoint
4949

50-
Before subscribing to the topic, 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/dbarkol/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.
50+
Before subscribing to the topic, 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.
5151

5252
Replace `<your-site-name>` with a unique name for your web app. The web app name must be unique because it's part of the DNS entry.
5353

@@ -56,7 +56,7 @@ $sitename="<your-site-name>"
5656
5757
New-AzureRmResourceGroupDeployment `
5858
-ResourceGroupName gridResourceGroup `
59-
-TemplateUri "https://raw.githubusercontent.com/dbarkol/azure-event-grid-viewer/master/azuredeploy.json" `
59+
-TemplateUri "https://raw.githubusercontent.com/Azure-Samples/azure-event-grid-viewer/master/azuredeploy.json" `
6060
-siteName $sitename `
6161
-hostingPlanName viewerhost
6262
```

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: event-grid
55
keywords:
66
author: tfitzmac
77
ms.author: tomfitz
8-
ms.date: 07/05/2018
8+
ms.date: 08/23/2018
99
ms.topic: quickstart
1010
ms.service: event-grid
1111
---
@@ -51,7 +51,7 @@ az eventgrid topic create --name $topicname -l westus2 -g gridResourceGroup
5151

5252
## Create a message endpoint
5353

54-
Before subscribing to the topic, 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/dbarkol/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.
54+
Before subscribing to the topic, 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.
5555

5656
Replace `<your-site-name>` with a unique name for your web app. The web app name must be unique because it's part of the DNS entry.
5757

@@ -60,7 +60,7 @@ sitename=<your-site-name>
6060
6161
az group deployment create \
6262
--resource-group gridResourceGroup \
63-
--template-uri "https://raw.githubusercontent.com/dbarkol/azure-event-grid-viewer/master/azuredeploy.json" \
63+
--template-uri "https://raw.githubusercontent.com/Azure-Samples/azure-event-grid-viewer/master/azuredeploy.json" \
6464
--parameters siteName=$sitename hostingPlanName=viewerhost
6565
```
6666

articles/storage/blobs/storage-blob-event-quickstart-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: storage,event-grid
55
author: david-stanford
66

77
ms.author: dastanfo
8-
ms.date: 07/05/2018
8+
ms.date: 08/23/2018
99
ms.topic: article
1010
ms.service: storage
1111
ms.component: blobs
@@ -75,7 +75,7 @@ $ctx = $storageAccount.Context
7575

7676
## Create a message endpoint
7777

78-
Before subscribing to the topic, 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/dbarkol/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.
78+
Before subscribing to the topic, 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.
7979

8080
Replace `<your-site-name>` with a unique name for your web app. The web app name must be unique because it's part of the DNS entry.
8181

@@ -84,7 +84,7 @@ $sitename="<your-site-name>"
8484
8585
New-AzureRmResourceGroupDeployment `
8686
-ResourceGroupName $resourceGroup `
87-
-TemplateUri "https://raw.githubusercontent.com/dbarkol/azure-event-grid-viewer/master/azuredeploy.json" `
87+
-TemplateUri "https://raw.githubusercontent.com/Azure-Samples/azure-event-grid-viewer/master/azuredeploy.json" `
8888
-siteName $sitename `
8989
-hostingPlanName viewerhost
9090
```

articles/storage/blobs/storage-blob-event-quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: storage,event-grid
55
author: cbrooksmsft
66

77
ms.author: cbrooks
8-
ms.date: 07/05/2018
8+
ms.date: 08/23/2018
99
ms.topic: quickstart
1010
ms.service: storage
1111
ms.component: blobs
@@ -60,7 +60,7 @@ az storage account create \
6060

6161
## Create a message endpoint
6262

63-
Before subscribing to the topic, 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/dbarkol/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.
63+
Before subscribing to the topic, 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.
6464

6565
Replace `<your-site-name>` with a unique name for your web app. The web app name must be unique because it's part of the DNS entry.
6666

@@ -69,7 +69,7 @@ sitename=<your-site-name>
6969
7070
az group deployment create \
7171
--resource-group <resource_group_name> \
72-
--template-uri "https://raw.githubusercontent.com/dbarkol/azure-event-grid-viewer/master/azuredeploy.json" \
72+
--template-uri "https://raw.githubusercontent.com/Azure-Samples/azure-event-grid-viewer/master/azuredeploy.json" \
7373
--parameters siteName=$sitename hostingPlanName=viewerhost
7474
```
7575

0 commit comments

Comments
 (0)