Skip to content

Commit

Permalink
bp guide update
Browse files Browse the repository at this point in the history
  • Loading branch information
bmoore-msft committed Feb 27, 2019
1 parent b72d89b commit 48e023b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 1-CONTRIBUTION-GUIDE/best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,20 +92,22 @@ The common properties should be authored consistently to provide for understanda
```json
"resources": [
{
"comments": "if any",
"condition": true,
"type": "Microsoft.Compute/virtualMachines",
"apiVersion": "2017-12-01",
"name": "[concat(parameters('virtualMachineName'), copyIndex(1))]",
"location": "[parameters('location')]",
"sku": {},
"copy": {
"name": "vmLoop",
"count": "[parameters('numberOfVMs')]"
},
"dependsOn": [
"nicLoop"
],
"comments": "this is the vm loop",
"properties": {
"tags": {},
"properties": {}
```
### dependsOn
Deployment sequence dependencies can be specified by using the dependsOn property. Dependencies are only allowed for resources that are deployed within the same template. They are not needed for existing resources, and for nested deployments, the dependency is created on the deployment resource itself.
Expand Down

0 comments on commit 48e023b

Please sign in to comment.