July 2018
Beginner
552 pages
13h 18m
English
Resources are mandatory in resource group deployment. The resource key contains an array of resource objects of different types. Different resource types will have different parameters that can be set. The following code sample, taken from https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-templates-resources, shows the entire structure of one resource entry:
"resources": [ { "condition": "<boolean-value-whether-to-deploy>", "apiVersion": "<api-version-of-resource>", "type": "<resource-provider-namespace/resource-type-name>", "name": "<name-of-the-resource>", "location": "<location-of-resource>", "tags": { ... }, "comments": "<your-reference-notes>", "copy": { ... }, "dependsOn": [ "<array-of-related-resource-names>" ...Read now
Unlock full access