Skip to content

Commit 5f8e0cc

Browse files
committed
fixes based on testing
1 parent b685f05 commit 5f8e0cc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/event-grid/resize-images-on-storage-blob-upload-event.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Tutorial: Use Azure Event Grid to automate resizing uploaded images'
33
description: 'Tutorial: Azure Event Grid can trigger on blob uploads in Azure Storage. You can use this to send image files uploaded to Azure Storage to other services, such as Azure Functions, for resizing and other improvements.'
44
ms.topic: tutorial
5-
ms.date: 09/28/2021
5+
ms.date: 03/21/2022
66
ms.devlang: csharp, javascript
77
ms.custom: devx-track-azurecli
88
---
@@ -136,7 +136,7 @@ Create a function app by using the [az functionapp create](/cli/azure/functionap
136136
2. Create a function app.
137137
138138
```azurecli-interactive
139-
az functionapp create --name $functionapp --storage-account $functionstorage --resource-group $resourceGroupName --consumption-plan-location $location --functions-version 2
139+
az functionapp create --name $functionapp --storage-account $functionstorage --resource-group $resourceGroupName --consumption-plan-location $location --functions-version 3
140140
```
141141
142142
---
@@ -189,12 +189,12 @@ az functionapp deployment source config --name $functionapp --resource-group $re
189189

190190
# [Node.js v10 SDK](#tab/nodejsv10)
191191

192-
The sample Node.js resize function is available on [GitHub](https://github.com/Azure-Samples/storage-blob-resize-function-node-v10). Deploy this Functions code project to the function app by using the [az functionapp deployment source config](/cli/azure/functionapp/deployment/source) command.
192+
The sample Node.js resize function is available on [GitHub](https://github.com/Azure-Samples/storage-blob-resize-function-node). Deploy this Functions code project to the function app by using the [az functionapp deployment source config](/cli/azure/functionapp/deployment/source) command.
193193

194194
```azurecli-interactive
195195
az functionapp deployment source config --name $functionapp \
196196
--resource-group $resourceGroupName --branch master --manual-integration \
197-
--repo-url https://github.com/Azure-Samples/storage-blob-resize-function-node-v10
197+
--repo-url https://github.com/Azure-Samples/storage-blob-resize-function-node
198198
```
199199

200200
---
@@ -211,7 +211,7 @@ To learn more about this function, see the [function.json and run.csx files](htt
211211

212212
# [Node.js v10 SDK](#tab/nodejsv10)
213213

214-
To learn more about this function, see the [function.json and index.js files](https://github.com/Azure-Samples/storage-blob-resize-function-node-v10/tree/master/Thumbnail).
214+
To learn more about this function, see the [function.json and index.js files](https://github.com/Azure-Samples/storage-blob-resize-function-node/tree/master/Thumbnail).
215215

216216
---
217217

0 commit comments

Comments
 (0)