Skip to content

Commit fae726a

Browse files
authored
Fix code format and spelling
1 parent dbbbce2 commit fae726a

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

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

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1834,32 +1834,32 @@ These application settings are required for container deployments:
18341834

18351835
Keep these considerations in mind when working with site and application settings using Bicep files or ARM templates:
18361836
::: zone pivot="flex-consumption-plan"
1837-
+ The optional `alwaysReady` setting contains an array of one or more `{name,instanceCount}` objects, with one for each [per-function scale group](flex-consumption-plan.md#per-function-scaling). These are the scale groups being used to make always-ready scale decisions. This example sets always-ready counts for both the `http` group and function named `helloworld`, which is of a non-gouped trigger type:
1837+
+ The optional `alwaysReady` setting contains an array of one or more `{name,instanceCount}` objects, with one for each [per-function scale group](flex-consumption-plan.md#per-function-scaling). These are the scale groups being used to make always-ready scale decisions. This example sets always-ready counts for both the `http` group and a single function named `helloworld`, which is of a non-grouped trigger type:
18381838
### [Bicep](#tab/bicep)
18391839
```bicep
18401840
alwaysReady: [
1841-
{
1842-
name: 'http'
1843-
instanceCount: 2
1844-
}
1845-
{
1846-
name: 'function:helloworld'
1847-
instanceCount: 1
1848-
}
1841+
{
1842+
name: 'http'
1843+
instanceCount: 2
1844+
}
1845+
{
1846+
name: 'function:helloworld'
1847+
instanceCount: 1
1848+
}
18491849
]
18501850
```
18511851
### [ARM template](#tab/json)
18521852
```json
1853-
"alwaysReady": [
1853+
"alwaysReady": [
18541854
{
1855-
"name": "http",
1856-
"instanceCount": 2
1857-
},
1855+
"name": "http",
1856+
"instanceCount": 2
1857+
},
18581858
{
1859-
"name": "function:helloworld",
1860-
"instanceCount": 1
1861-
}
1862-
]
1859+
"name": "function:helloworld",
1860+
"instanceCount": 1
1861+
}
1862+
]
18631863
```
18641864
::: zone-end
18651865
::: zone pivot="consumption-plan,premium-plan,dedicated-plan"

0 commit comments

Comments
 (0)