{
"mode":"All",
"policyRule":{
"if":{
"allOf":[
{
"field":"type",
"equals":"Microsoft.Insights/metricalerts"
},
{
"field":"Microsoft.Insights/metricalerts/enabled",
"equals":"true"
}
]
},
"then":{
"effect":"deployIfNotExists",
"details":{
"type":"microsoft.insights/actiongroups",
"deploymentScope":"subscription",
"existenceScope":"subscription",
"existenceCondition":{
"allOf":[
{
"field":"Microsoft.Insights/metricalerts/actions[*]",
"less":"1"
}
]
},
"roleDefinitionIds":[
"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c"
],
"deployment":{
"location":"centralus",
"properties":{
"mode":"incremental",
"parameters":{
"actionGroupName":{
"value":"ActionGroup1"
},
"actionGroupShortName":{
"value":"AG1"
}
},
"template":{
"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion":"1.0.0.0",
"parameters":{
"actionGroupName":{
"type":"string",
"metadata":{
"description":"Unique name (within the Resource Group) for the Action group."
}
},
"actionGroupShortName":{
"type":"string",
"metadata":{
"description":"Short name (maximum 12 characters) for the Action group."
}
}
},
"resources":[
{
"name":"[parameters('actionGroupName')]",
"type":"microsoft.insights/actionGroups",
"apiVersion":"2018-09-01",
"location":"global",
"properties":{
"groupShortName":"[parameters('actionGroupShortName')]",
"enabled":true,
"emailReceivers":[
{
"name":"TestMail",
"emailAddress":"sachin.kalia15@gmail.com"
}
],
"smsReceivers":[
{
"name":"TestSMS",
"countryCode":"91",
"phoneNumber":"99116"
}
],
"armRoleReceivers":[
{
"name":"TestCont",
"roleId":"b24988ac-6180-42a0-ab88-20f7382dd24c"
}
]
}
}
]
}
}
}
}
}
},
"parameters":{
}
}
Я создаю политику, и мне удалось ее создать, хотя при ее повторном посредничестве с использованием задач исправления в портале Azure происходит сбой, и появляется сообщение об ошибке * 1006.*
Ресурс 'microsoft.insights / actiongroups / HmActionGroup' в группе ресурсов '' не найден.это формат ресурса в ручных шаблонах для политики.В моем случае я указал местоположение как «глобальное»
Любая помощь будет высоко оценена