Currently we have CI/CD release pipeline setup for deploying ADF V2 code from Development to Test Data Factory as per documentation. When running the release pipeline in Azure DevOps, it fails with following error
{
"status": "Failed",
"error": {
"code": "ResourceDeploymentFailure",
"message": "The resource operation completed with terminal provisioning state 'Failed'.",
"details": [
{
"code": "DeploymentFailed",
"message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.",
"details": [
{
"code": "BadRequest",
"message": "{\r\n \"error\": {\r\n \"code\": \"TumblingWindowTriggerStartTimeUpdateNotAllowed\",\r\n \"message\": \"Update of start time for tumbling window trigger is not allowed.null\",\r\n \"target\": null,\r\n \"details\": null\r\n }\r\n}"
}
]
}
]
}
}
Is there any workaround to deploy the ARM Template to Test ADF without updating or parameterize the StartTime of tumbling window trigger?
Any help is much appreciated!