Я пытаюсь добавить график заданий в свою учетную запись автоматизации, чтобы связать мой список заданий с моим расписанием.
Я использую точно такие же переменные ресурса, как microsoft doc .
Но все же это говорит о том, что я не использую те же сегменты, что и сегменты моего корневого типа ресурса?
код Jobshedule
{
"name": "jobshedule1",
"type": "Microsoft.Automation/automationAccounts/jobSchedules",
"apiVersion": "2015-10-31",
"properties": {
"schedule": {
"name": "shedule1"
},
"runbook": {
"name": "variables('name')"
}
}
}
код корневого объекта (automaAccount)
{
"name": "AutomationDev",
"type": "Microsoft.Automation/automationAccounts",
"apiVersion": "2015-10-31",
"properties": {
"sku": {
"name": "Free"
}
},
"location": "[parameters('location')]",
"tags": {},
}
ошибка, которую я получаю:
New-AzureRmResourceGroupDeployment : 10:24:07 - Error: Code=InvalidTemplate; Message=Deployment template validation fai
led: 'The template resource 'jobshedule1' for type 'Microsoft.Automation/automationAccounts/jobSchedules' at line '22'
and column '9' has incorrect segment lengths. A nested resource type must have identical number of segments as its reso
urce name. A root resource type must have segment length one greater than its resource name. Please see https://aka.ms/
arm-template/#resources for usage details.'.