You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-instances/container-instances-tutorial-azure-function-trigger.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
-
title: Tutorial - Azure Functions trigger for Azure Container Instances
3
-
description: Create an HTTP-triggered serverless PowerShell function to automate creation of Azure container instances
2
+
title: Tutorial - Trigger Azure Container Instances by an Azure function
3
+
description: Create an HTTP-triggered, serverless PowerShell function to automate creation of Azure container instances
4
4
services: container-instances
5
5
author: dlepow
6
6
manager: gwallace
7
7
8
8
ms.service: container-instances
9
9
ms.topic: tutorial
10
-
ms.date: 08/16/2019
10
+
ms.date: 09/20/2019
11
11
ms.author: danlep
12
12
ms.custom:
13
13
---
@@ -31,7 +31,7 @@ You learn how to:
31
31
32
32
## Prerequisites
33
33
34
-
See [Create your first PowerShell function in Azure](../azure-functions/functions-create-first-function-powershell.md) for prerequisites to install and use Visual Studio Code with the Azure Functions on your OS.
34
+
See [Create your first PowerShell function in Azure](../azure-functions/functions-create-first-function-powershell.md#prerequisites) for prerequisites to install and use Visual Studio Code with the Azure Functions on your OS.
35
35
36
36
Some steps in this article use the Azure CLI. You can use the Azure Cloud Shell or a local installation of the Azure CLI to complete these steps. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
37
37
@@ -92,7 +92,7 @@ This example creates a container group consisting of a single container instance
92
92
93
93
## Test function app locally
94
94
95
-
Ensure that the function runs properly locally before republishing the function app project to Azure. As shown in the [PowerShell quickstart](../azure-functions/functions-create-first-function-powershell.md), insert a local breakpoint in the PowerShell script and a `Wait-Debugger` call above it. For debugging guidance, see [Debug PowerShell Azure Functions locally](../azure-functions/functions-debug-powershell-local.md).
95
+
Ensure that the function runs properly locally before republishing the function app project to Azure. As shown in the [PowerShell quickstart](../azure-functions/functions-create-first-function-powershell.md), insert a local breakpoint in the PowerShell script and a `Wait-Debugger` call above it. For debugging guidance, see [Debug PowerShell Azure Functions locally](../azure-functions/functions-debug-powershell-local.md).
96
96
97
97
98
98
## Republish Azure function app
@@ -175,7 +175,6 @@ Started container group mycontainergroup
175
175
Verify that the container ran with the [az container logs][az-container-logs] command:
176
176
177
177
```azurecli
178
-
179
178
az container logs --resource-group myfunctionapp --name mycontainergroup
0 commit comments