microsoft.insights/actionGroups ARM 模板 WebhookReceiver 不工作
microsoft.insights/actionGroups ARM Template WebhookReceiver not working
我正在使用此模板部署我的 AzureActionGroup:
{
"apiVersion": "2019-06-01",
"type": "microsoft.insights/actionGroups",
"location": "Global",
"name": "[variables('ActionGroupName')]",
"properties": {
"groupShortName": "Dispo",
"enabled": true,
"WebhookReceiver": [
{
"name": "Hook",
"serviceUri": "http://requestb.in/1bq62iu1"
}
]
}
}
一切运行没有错误。但是当我去门户网站查看我的资源时,我没有看到检测到任何 WebHook 操作。
我做错了什么?
把"WebhookReceiver"换成"WebhookReceivers",应该可以了
我正在使用此模板部署我的 AzureActionGroup:
{
"apiVersion": "2019-06-01",
"type": "microsoft.insights/actionGroups",
"location": "Global",
"name": "[variables('ActionGroupName')]",
"properties": {
"groupShortName": "Dispo",
"enabled": true,
"WebhookReceiver": [
{
"name": "Hook",
"serviceUri": "http://requestb.in/1bq62iu1"
}
]
}
}
一切运行没有错误。但是当我去门户网站查看我的资源时,我没有看到检测到任何 WebHook 操作。
我做错了什么?
把"WebhookReceiver"换成"WebhookReceivers",应该可以了