Skip to content

Commit 92808b6

Browse files
Merge pull request #218298 from mumian/1114-loop-limits
Update the loop limits
2 parents 2652147 + f4fda9a commit 92808b6

File tree

1 file changed

+3
-2
lines changed
  • articles/azure-resource-manager/bicep

1 file changed

+3
-2
lines changed

articles/azure-resource-manager/bicep/loops.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Iterative loops in Bicep
33
description: Use loops to iterate over collections in Bicep
44
ms.topic: conceptual
5-
ms.date: 11/09/2022
5+
ms.date: 11/14/2022
66
---
77

88
# Iterative loops in Bicep
@@ -63,9 +63,10 @@ Loops can be declared by:
6363

6464
Using loops in Bicep has these limitations:
6565

66+
- Bicep loops only work with values that can be determined at the start of deployment.
6667
- Loop iterations can't be a negative number or exceed 800 iterations.
6768
- Can't loop a resource with nested child resources. Change the child resources to top-level resources. See [Iteration for a child resource](#iteration-for-a-child-resource).
68-
- Can't loop on multiple levels of properties.
69+
- To loop on multiple levels of properties, use [lambda map function](./bicep-functions-lambda.md#map).
6970

7071
## Integer index
7172

0 commit comments

Comments
 (0)