Support `.bicepparam` file
Summary of the new feature / enhancement
As a user, I would like the ability to pass in a .bicepparam file to the --parameters-file subcommand. With Bicep support now added, it makes sense to include it through an extension.
Proposed technical implementation details (optional)
No response
This should probably be a new import arg type to pass the parameter file passed to DSC to bicep without interpretation
After taking a closer look, I think this can rather fall under the discover extension type. The reason is the output and potential passing it to the correct parameter command:
When calling the Az CLI or using Azure PowerShell, a .bicepparam file can be added to TemplateFile or TemplateParameterFile, introducing additional complexity in determining on the DSC side what the user actually wants. Instead of doing it directly in the engine, a script can determine what the user intended. For example, when the using statement is empty, it should be added as a parameter file. But this is just a thought.