Skip to content

Commit f9fdb23

Browse files
authored
Merge pull request #45596 from andresnava/patch-14
Update functions-infrastructure-as-code.md
2 parents 8c5c401 + 5a809c9 commit f9fdb23

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/azure-functions/functions-infrastructure-as-code.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ The function app resource is defined by using a resource of type **Microsoft.Web
125125
"[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]",
126126
"[resourceId('Microsoft.Insights/components', variables('appInsightsName'))]"
127127
]
128+
}
128129
```
129130

130131
> [!IMPORTANT]
@@ -134,7 +135,7 @@ A function app must include these application settings:
134135

135136
| Setting name | Description | Example values |
136137
|------------------------------|-------------------------------------------------------------------------------------------|---------------------------------------|
137-
| AzureWebJobsStorage | A connection string to a storage account that the Functions runtime for internal queueing | See [Storage account](#storage) |
138+
| AzureWebJobsStorage | A connection string to a storage account that the Functions runtime uses for internal queueing | See [Storage account](#storage) |
138139
| FUNCTIONS_EXTENSION_VERSION | The version of the Azure Functions runtime | `~2` |
139140
| FUNCTIONS_WORKER_RUNTIME | The language stack to be used for functions in this app | `dotnet`, `node`, `java`, `python`, or `powershell` |
140141
| WEBSITE_NODE_DEFAULT_VERSION | Only needed if using the `node` language stack, specifies the version to use | `10.14.1` |
@@ -170,7 +171,7 @@ These properties are specified in the `appSettings` collection in the `siteConfi
170171

171172
## Deploy on Consumption plan
172173

173-
The Consumption plan automatically allocates compute power when your code is running, scales out as necessary to handle load, and then scales down when code is not running. You don't have to pay for idle VMs, and you don't have to reserve capacity in advance. To learn more, see [Azure Functions scale and hosting](functions-scale.md#consumption-plan).
174+
The Consumption plan automatically allocates compute power when your code is running, scales out as necessary to handle load, and then scales in when code is not running. You don't have to pay for idle VMs, and you don't have to reserve capacity in advance. To learn more, see [Azure Functions scale and hosting](functions-scale.md#consumption-plan).
174175

175176
For a sample Azure Resource Manager template, see [Function app on Consumption plan].
176177

0 commit comments

Comments
 (0)