Skip to content

Commit 4ed5830

Browse files
committed
On branch edburns-MSFT-dependsOnValue fix blatant error in docs that tripped me up and wasted my time!
modified: articles/azure-resource-manager/templates/define-resource-dependency.md
1 parent 71d6c6c commit 4ed5830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-resource-manager/templates/define-resource-dependency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Resource Manager evaluates the dependencies between resources, and deploys them
1212

1313
## dependsOn
1414

15-
Within your template, the dependsOn element enables you to define one resource as a dependent on one or more resources. Its value is a comma-separated list of resource names. The list can include resources that are [conditionally deployed](conditional-resource-deployment.md). When a conditional resource isn't deployed, Azure Resource Manager automatically removes it from the required dependencies.
15+
Within your template, the dependsOn element enables you to define one resource as a dependent on one or more resources. Its value is a JSON array of strings, each of which is a resource name. The array can include resources that are [conditionally deployed](conditional-resource-deployment.md). When a conditional resource isn't deployed, Azure Resource Manager automatically removes it from the required dependencies.
1616

1717
The following example shows a virtual machine scale set that depends on a load balancer, virtual network, and a loop that creates multiple storage accounts. These other resources aren't shown in the following example, but they would need to exist elsewhere in the template.
1818

0 commit comments

Comments
 (0)