Complete the code to define the resource group location in an ARM template.
{
"location": "[1]"
}The location property in an ARM template specifies the Azure region where the resource group or resource will be deployed. It must be a valid Azure region string like eastus.
Complete the code to reference a parameter named 'storageAccountName' in an ARM template.
"name": "[1]"
To use a parameter value in an ARM template, you use the parameters() function with the parameter name.
Fix the error in the ARM template snippet to correctly define a resource type.
"type": "[1]"
The type property must be the full resource provider namespace followed by the resource type, separated by a slash.
Fill both blanks to create a resource with a name from parameters and a location from variables.
{
"name": "[1]",
"location": "[2]"
}The resource name is usually set from a parameter like vmName, and location can be set from a variable holding the location string.
Fill all three blanks to define a resource with type, apiVersion, and dependsOn properties.
{
"type": "[1]",
"apiVersion": "[2]",
"dependsOn": ["[3]"]
}The type is the resource type, apiVersion is the API version string, and dependsOn lists resource IDs that must be created first.