You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make source code a bit more readable on conform to some standards of practice the parameters and variables
Description
In the mlz.bicep main file the parameters and variables start at line 301. When bicep builds the json file for ARM it will host parameters and variable section at the top of the json.
Acceptance Criteria
All bicep files run/build with parameters and variables moved to top of files.
All bicep files build to supported json not hitting json/ARM limitations:
Add parameters descriptors where prudent. @description and potentially @Allowed in cases requiring more control
Additional context: json/ARM Limitations:
4 MB files size (additional 4 MB for parameter file if used)
256 parameters
256 variables
800 resources (including copy count)
64 output values
24,576 characters in a template expression
The text was updated successfully, but these errors were encountered:
Benefit/Result/Outcome
To make source code a bit more readable on conform to some standards of practice the parameters and variables
Description
In the mlz.bicep main file the parameters and variables start at line 301. When bicep builds the json file for ARM it will host parameters and variable section at the top of the json.
Acceptance Criteria
Additional context: json/ARM Limitations:
4 MB files size (additional 4 MB for parameter file if used)
256 parameters
256 variables
800 resources (including copy count)
64 output values
24,576 characters in a template expression
The text was updated successfully, but these errors were encountered: