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/templates/template-tutorial-create-templates-with-dependent-resources.md
+22-14Lines changed: 22 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,33 +62,43 @@ When you explore the template in this section, try to answer these questions:
62
62
63
63

64
64
65
-
There are five resources defined by the template:
65
+
There are six resources defined by the template:
66
66
67
-
* `Microsoft.Storage/storageAccounts`. See the [template reference](https://docs.microsoft.com/azure/templates/Microsoft.Storage/storageAccounts).
68
-
* `Microsoft.Network/publicIPAddresses`. See the [template reference](https://docs.microsoft.com/azure/templates/microsoft.network/publicipaddresses).
69
-
* `Microsoft.Network/virtualNetworks`. See the [template reference](https://docs.microsoft.com/azure/templates/microsoft.network/virtualnetworks).
70
-
* `Microsoft.Network/networkInterfaces`. See the [template reference](https://docs.microsoft.com/azure/templates/microsoft.network/networkinterfaces).
71
-
* `Microsoft.Compute/virtualMachines`. See the [template reference](https://docs.microsoft.com/azure/templates/microsoft.compute/virtualmachines).
67
+
* `Microsoft.Storage/storageAccounts`. See the [template reference](/azure/templates/Microsoft.Storage/storageAccounts).
68
+
* `Microsoft.Network/publicIPAddresses`. See the [template reference](/azure/templates/microsoft.network/publicipaddresses).
69
+
* `Microsoft.Network/networkSecurityGroups`. See the [template reference](/azure/templates/microsoft.network/networksecuritygroups).
70
+
* `Microsoft.Network/virtualNetworks`. See the [template reference](/azure/templates/microsoft.network/virtualnetworks).
71
+
* `Microsoft.Network/networkInterfaces`. See the [template reference](/azure/templates/microsoft.network/networkinterfaces).
72
+
* `Microsoft.Compute/virtualMachines`. See the [template reference](/azure/templates/microsoft.compute/virtualmachines).
72
73
73
74
It is helpful to get some basic understanding of the template before customizing it.
74
75
75
-
2. Expand the first resource. It is a storage account. Compare the resource definition to the [template reference](https://docs.microsoft.com/azure/templates/Microsoft.Storage/storageAccounts).
76
+
1. Expand the first resource. It is a storage account. Compare the resource definition to the [template reference](/azure/templates/Microsoft.Storage/storageAccounts).
76
77
77
78

78
79
79
-
3. Expand the second resource. The resource type is `Microsoft.Network/publicIPAddresses`. Compare the resource definition to the [template reference](https://docs.microsoft.com/azure/templates/microsoft.network/publicipaddresses).
80
+
1. Expand the second resource. The resource type is `Microsoft.Network/publicIPAddresses`. Compare the resource definition to the [template reference](/azure/templates/microsoft.network/publicipaddresses).
80
81
81
82

82
-
4. Expand the fourth resource. The resource type is `Microsoft.Network/networkInterfaces`:
83
83
84
-

84
+
1. Expand the third resource. The resource type is `Microsoft.Network/networkSecurityGroups`. Compare the resource definition to the [template reference](/azure/templates/microsoft.network/networksecuritygroups).
85
85
86
-
The dependsOn element enables you to define one resource as a dependent on one or more resources. The resource depends on two other resources:
86
+

87
+
88
+
1. Expand the fourth resource. The resource type is `Microsoft.Network/virtualNetworks`:
89
+
90
+

91
+
92
+
The dependsOn element enables you to define one resource as a dependent on one or more resources. The dependsOn element enables you to define one resource as a dependent on one or more resources. This resource depends on one other resource:
93
+
94
+
* `Microsoft.Network/networkSecurityGroups`
95
+
96
+
1. Expand the fifty resource. The resource type is `Microsoft.Network/networkInterfaces`. The resource depends on two other resources:
87
97
88
98
* `Microsoft.Network/publicIPAddresses`
89
99
* `Microsoft.Network/virtualNetworks`
90
100
91
-
5. Expand the fifth resource. This resource is a virtual machine. It depends on two other resources:
101
+
1. Expand the sixth resource. This resource is a virtual machine. It depends on two other resources:
92
102
93
103
* `Microsoft.Storage/storageAccounts`
94
104
* `Microsoft.Network/networkInterfaces`
@@ -101,8 +111,6 @@ By specifying the dependencies, Resource Manager efficiently deploys the solutio
0 commit comments