-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Description
Hi,
I am trying to deploy the MimecastAudit DataConnector via ARM template:
https://aka.ms/sentinel-MimecastAuditAzureDeploy-azuredeploy
The deployment is failing on creation of the Data Collection rule with the below error:
{
"code": "InvalidPayload",
"message": "Data collection rule is invalid",
"details": [
{
"code": "InvalidOutputTable",
"target": "properties.dataFlows[0]",
"message": "Table for output stream 'Custom-Audit_CL' is not available for destination 'RuleDestAqys35xelo4c3w'. Please ensure that the table exists in Log Analytics Workspace before creating or updating the rule."
},
{
"code": "InvalidOutputTable",
"target": "properties.dataFlows[0]",
"message": "Custom table for stream 'Custom-Audit_CL' is not available for destination 'RuleDestAqys35xelo4c3w'. Please ensure that the table exists in Log Analytics Workspace before creating or updating the rule."
}
]
}
To Reproduce
Steps to reproduce the behaviour:
- Begin custom deployment for ARM template https://aka.ms/sentinel-MimecastAuditAzureDeploy-azuredeploy
- Fill out instance details
- Select "Create"
Expected behaviour
Expect the ARM template deployment to complete without error
Screenshots
I am thinking that the issue is that The Data Collection rule should be outputting to "[concat(parameters('MimecastAuditTableName'), '_CL')]" and not "[concat('Custom-', parameters('MimecastAuditTableName'), '_CL')]" as this table is not expected to exist.
Please advise on whether this issue can be resolved.
Thanks
SB