I have generated the ARM templates for my Azure Stream Analytics (ASA) solution using
<package id="Microsoft.Azure.StreamAnalytics.CICD" version="3.0.0" targetFramework="net452" />
However, since I have multiple inputs and outputs in my ASA, when generated the ARM template, it contains 282 parameters. which is exceeding the limit of 256, and I getting error while deploying it using Azure DevOps pipeline.
I know, we can create nested/linked ARM templates to resolved the issue. But if I start creating them using the actual ARM generated manually, it will take lot of time.
Is there any way we can have a automated way of creating the nested templates, for ASA to avoid this issue ? Need help on the same.