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/azure-resource-manager/bicep/loops.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Iterative loops in Bicep
3
3
description: Use loops to iterate over collections in Bicep
4
4
ms.topic: conceptual
5
-
ms.date: 11/09/2022
5
+
ms.date: 11/14/2022
6
6
---
7
7
8
8
# Iterative loops in Bicep
@@ -63,9 +63,10 @@ Loops can be declared by:
63
63
64
64
Using loops in Bicep has these limitations:
65
65
66
+
- Bicep loops only work with values that can be determined at the start of deployment.
66
67
- Loop iterations can't be a negative number or exceed 800 iterations.
67
68
- 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).
0 commit comments